Skip to content

Commit

Permalink
adding on list description field
Browse files Browse the repository at this point in the history
  • Loading branch information
Jackson Barbosa committed Dec 7, 2023
1 parent 487fe29 commit e4c0b08
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions connect/api/v1/project/serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ class Meta:
"first_access",
"wa_demo_token",
"redirect_url",
"description",
]
ref_name = None

Expand All @@ -86,6 +87,7 @@ class Meta:
created_at = serializers.DateTimeField(
required=False, read_only=True, style={"show": False}
)
description = serializers.CharField(max_length=1000, required=False)
authorizations = serializers.SerializerMethodField(style={"show": False})
pending_authorizations = serializers.SerializerMethodField(style={"show": False})
authorization = serializers.SerializerMethodField(style={"show": False})
Expand Down

0 comments on commit e4c0b08

Please sign in to comment.