|
652 | 652 | url( |
653 | 653 | r"^accept-invite/(?P<organization_slug>[^\/]+)/(?P<member_id>[^\/]+)/(?P<token>[^\/]+)/$", |
654 | 654 | AcceptOrganizationInvite.as_view(), |
655 | | - name="sentry-api-0-accept-organization-invite-with-org", |
| 655 | + name="sentry-api-0-organization-accept-organization-invite", |
656 | 656 | ), |
657 | 657 | url( |
658 | 658 | r"^accept-invite/(?P<member_id>[^\/]+)/(?P<token>[^\/]+)/$", |
|
695 | 695 | url( |
696 | 696 | r"^(?P<monitor_id>[^\/]+)/$", |
697 | 697 | MonitorDetailsEndpoint.as_view(), |
698 | | - name="sentry-api-0-monitor-details-with-org", |
| 698 | + name="sentry-api-0-organization-monitor-details", |
699 | 699 | ), |
700 | 700 | url( |
701 | 701 | r"^(?P<monitor_id>[^\/]+)/checkins/$", |
702 | 702 | MonitorCheckInsEndpoint.as_view(), |
703 | | - name="sentry-api-0-monitor-check-in-index-with-org", |
| 703 | + name="sentry-api-0-organization-monitor-check-in-index", |
704 | 704 | ), |
705 | 705 | url( |
706 | 706 | r"^(?P<monitor_id>[^\/]+)/checkins/(?P<checkin_id>[^\/]+)/$", |
707 | 707 | MonitorCheckInDetailsEndpoint.as_view(), |
708 | | - name="sentry-api-0-monitor-check-in-details-with-org", |
| 708 | + name="sentry-api-0-organization-monitor-check-in-details", |
709 | 709 | ), |
710 | 710 | url( |
711 | 711 | r"^(?P<monitor_id>[^\/]+)/checkins/(?P<checkin_id>[^\/]+)/attachment/$", |
712 | 712 | MonitorCheckInAttachmentEndpoint.as_view(), |
713 | | - name="sentry-api-0-monitor-check-in-attachment-with-org", |
| 713 | + name="sentry-api-0-organization-monitor-check-in-attachment", |
714 | 714 | ), |
715 | 715 | url( |
716 | 716 | r"^(?P<monitor_id>[^\/]+)/stats/$", |
717 | 717 | MonitorStatsEndpoint.as_view(), |
718 | | - name="sentry-api-0-monitor-stats-with-org", |
| 718 | + name="sentry-api-0-organization-monitor-stats", |
719 | 719 | ), |
720 | 720 | ] |
721 | 721 | ), |
|
2335 | 2335 | url( |
2336 | 2336 | r"^organizations/(?P<organization_slug>[^\/]+)/issues/(?P<issue_id>[^\/]+)/participants/$", |
2337 | 2337 | GroupParticipantsEndpoint.as_view(), |
2338 | | - name="sentry-api-0-group-stats-with-org", |
| 2338 | + name="sentry-api-0-organization-group-stats", |
2339 | 2339 | ), |
2340 | 2340 | url( |
2341 | 2341 | r"^issues/(?P<issue_id>[^\/]+)/participants/$", |
|
2346 | 2346 | url( |
2347 | 2347 | r"^organizations/(?P<organization_slug>[^\/]+)/shared/(?:issues|groups)/(?P<share_id>[^\/]+)/$", |
2348 | 2348 | SharedGroupDetailsEndpoint.as_view(), |
2349 | | - name="sentry-api-0-shared-group-details-with-org", |
| 2349 | + name="sentry-api-0-organization-shared-group-details", |
2350 | 2350 | ), |
2351 | 2351 | url( |
2352 | 2352 | r"^shared/(?:issues|groups)/(?P<share_id>[^\/]+)/$", |
|
0 commit comments