Skip to content

Commit

Permalink
api.schedule: rename ProposalC3VOCPublishingWebhook
Browse files Browse the repository at this point in the history
  • Loading branch information
Kunsi committed Aug 31, 2024
1 parent ddd4a6c commit 2d4406d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/api/schedule.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def post(self, proposal_type):
return [t.id for t in res]


class C3VOCPublishingWebhook(Resource):
class ProposalC3VOCPublishingWebhook(Resource):
method_decorators = {"post": [_require_video_api_key]}

def post(self):
Expand Down Expand Up @@ -237,4 +237,4 @@ def get(self):
api.add_resource(FavouriteExternal, "/external/<int:event_id>/favourite")
api.add_resource(ScheduleMessage, "/schedule_messages")
api.add_resource(UpdateLotteryPreferences, "/schedule/tickets/<proposal_type>/preferences")
api.add_resource(C3VOCPublishingWebhook, "/c3voc/publishing-webhook")
api.add_resource(ProposalC3VOCPublishingWebhook, "/proposal/c3voc-publishing-webhook")

0 comments on commit 2d4406d

Please sign in to comment.