Skip to content

Commit

Permalink
Изменил метод Get на Post
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelldi committed Nov 10, 2019
1 parent 2bb90e2 commit 53b46c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DotNetRuServer/Controllers/TimePadController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public TimePadController(TimePadIntegrationService timePadService, IMeetupProvid
_meetupProvider = meetupProvider;
}

[HttpGet("[action]/{meetupId}")]
[HttpPost("[action]/{meetupId}")]
public async Task Create(string meetupId, CancellationToken ct)
{
var meetup = await _meetupProvider.GetMeetupOrDefaultExtendedAsync(meetupId);
Expand Down

0 comments on commit 53b46c2

Please sign in to comment.