mirror of
https://code.sup39.dev/repos/Wqawg
synced 2024-12-29 00:54:52 +09:00
5a7700ffe4
This patch contains migrations that require that there are no follow records. If you have any, the migration will (hopefully) fail and you'll need to manually delete any follow records you have. In the next patch I'll try to add automatic following on the pseudo-client side by running both e.g. createNoteC and followC in the same POST request handler.
172 lines
9.8 KiB
Text
172 lines
9.8 KiB
Text
-- This file is part of Vervis.
|
|
--
|
|
-- Written in 2016, 2018, 2019 by fr33domlover <fr33domlover@riseup.net>.
|
|
--
|
|
-- ♡ Copying is an act of love. Please copy, reuse and share.
|
|
--
|
|
-- The author(s) have dedicated all copyright and related and neighboring
|
|
-- rights to this software to the public domain worldwide. This software is
|
|
-- distributed without any warranty.
|
|
--
|
|
-- You should have received a copy of the CC0 Public Domain Dedication along
|
|
-- with this software. If not, see
|
|
-- <http://creativecommons.org/publicdomain/zero/1.0/>.
|
|
|
|
-- ----------------------------------------------------------------------------
|
|
-- Yesod misc
|
|
-- ----------------------------------------------------------------------------
|
|
|
|
/static StaticR Static appStatic
|
|
/favicon.ico FaviconR GET
|
|
/robots.txt RobotsR GET
|
|
|
|
/highlight/#Text/style.css HighlightStyleR GET
|
|
|
|
-- ----------------------------------------------------------------------------
|
|
-- Internal
|
|
-- ----------------------------------------------------------------------------
|
|
|
|
/post-receive PostReceiveR POST
|
|
|
|
-- ----------------------------------------------------------------------------
|
|
-- Federation
|
|
-- ----------------------------------------------------------------------------
|
|
|
|
/publish PublishR GET
|
|
/inbox InboxR GET
|
|
/akey1 ActorKey1R GET
|
|
/akey2 ActorKey2R GET
|
|
|
|
-- ----------------------------------------------------------------------------
|
|
-- Current user
|
|
-- ----------------------------------------------------------------------------
|
|
|
|
/ HomeR GET
|
|
|
|
/auth/!resend ResendVerifyEmailR GET
|
|
/auth AuthR Auth getAuth
|
|
|
|
/k KeysR GET POST
|
|
/k/!new KeyNewR GET
|
|
/k/#KyIdent KeyR GET DELETE POST
|
|
|
|
/cr ClaimRequestsPersonR GET
|
|
|
|
-- ----------------------------------------------------------------------------
|
|
-- People
|
|
-- ----------------------------------------------------------------------------
|
|
|
|
/s SharersR GET
|
|
/s/#ShrIdent SharerR GET
|
|
/s/#ShrIdent/inbox SharerInboxR GET POST
|
|
/s/#ShrIdent/notifications NotificationsR GET POST
|
|
/s/#ShrIdent/outbox SharerOutboxR GET POST
|
|
/s/#ShrIdent/outbox/#OutboxItemKeyHashid SharerOutboxItemR GET
|
|
/s/#ShrIdent/followers SharerFollowersR GET
|
|
/s/#ShrIdent/follow SharerFollowR POST
|
|
|
|
/p PeopleR GET
|
|
|
|
/g GroupsR GET POST
|
|
/g/!new GroupNewR GET
|
|
/g/#ShrIdent/m GroupMembersR GET POST
|
|
/g/#ShrIdent/m/!new GroupMemberNewR GET
|
|
/g/#ShrIdent/m/#ShrIdent GroupMemberR GET DELETE POST
|
|
|
|
/s/#ShrIdent/pr ProjectRolesR GET POST
|
|
/s/#ShrIdent/pr/!new ProjectRoleNewR GET
|
|
/s/#ShrIdent/pr/#RlIdent ProjectRoleR GET DELETE POST
|
|
/s/#ShrIdent/pr/#RlIdent/a ProjectRoleOpsR GET POST
|
|
/s/#ShrIdent/pr/#RlIdent/a/!new ProjectRoleOpNewR GET
|
|
|
|
-- ----------------------------------------------------------------------------
|
|
-- Projects
|
|
-- ----------------------------------------------------------------------------
|
|
|
|
/s/#ShrIdent/r ReposR GET POST
|
|
/s/#ShrIdent/r/!new RepoNewR GET
|
|
/s/#ShrIdent/r/#RpIdent RepoR GET PUT DELETE POST
|
|
/s/#ShrIdent/r/#RpIdent/inbox RepoInboxR GET POST
|
|
/s/#ShrIdent/r/#RpIdent/outbox RepoOutboxR GET
|
|
/s/#ShrIdent/r/#RpIdent/outbox/#OutboxItemKeyHashid RepoOutboxItemR GET
|
|
/s/#ShrIdent/r/#RpIdent/team RepoTeamR GET
|
|
/s/#ShrIdent/r/#RpIdent/followers RepoFollowersR GET
|
|
/s/#ShrIdent/r/#RpIdent/edit RepoEditR GET
|
|
/s/#ShrIdent/r/#RpIdent/follow RepoFollowR POST
|
|
/s/#ShrIdent/r/#RpIdent/s/+Texts RepoSourceR GET
|
|
/s/#ShrIdent/r/#RpIdent/c RepoHeadChangesR GET
|
|
/s/#ShrIdent/r/#RpIdent/b/#Text RepoBranchR GET
|
|
/s/#ShrIdent/r/#RpIdent/c/#Text RepoChangesR GET
|
|
/s/#ShrIdent/r/#RpIdent/p/#Text RepoPatchR GET
|
|
/s/#ShrIdent/r/#RpIdent/d RepoDevsR GET POST
|
|
/s/#ShrIdent/r/#RpIdent/d/!new RepoDevNewR GET
|
|
/s/#ShrIdent/r/#RpIdent/d/#ShrIdent RepoDevR GET DELETE POST
|
|
|
|
/s/#ShrIdent/r/#RpIdent/_darcs/+Texts DarcsDownloadR GET
|
|
|
|
/s/#ShrIdent/r/#RpIdent/info/refs GitRefDiscoverR GET
|
|
/s/#ShrIdent/r/#RpIdent/git-upload-pack GitUploadRequestR POST
|
|
|
|
/s/#ShrIdent/p ProjectsR GET POST
|
|
/s/#ShrIdent/p/!new ProjectNewR GET
|
|
/s/#ShrIdent/p/#PrjIdent ProjectR GET PUT POST
|
|
/s/#ShrIdent/p/#PrjIdent/inbox ProjectInboxR GET POST
|
|
/s/#ShrIdent/p/#PrjIdent/outbox ProjectOutboxR GET
|
|
/s/#ShrIdent/p/#PrjIdent/outbox/#OutboxItemKeyHashid ProjectOutboxItemR GET
|
|
/s/#ShrIdent/p/#PrjIdent/team ProjectTeamR GET
|
|
/s/#ShrIdent/p/#PrjIdent/followers ProjectFollowersR GET
|
|
/s/#ShrIdent/p/#PrjIdent/edit ProjectEditR GET
|
|
/s/#ShrIdent/p/#PrjIdent/follow ProjectFollowR POST
|
|
/s/#ShrIdent/p/#PrjIdent/d ProjectDevsR GET POST
|
|
/s/#ShrIdent/p/#PrjIdent/d/!new ProjectDevNewR GET
|
|
/s/#ShrIdent/p/#PrjIdent/d/#ShrIdent ProjectDevR GET DELETE POST
|
|
|
|
-- /w GlobalWorkflowsR GET POST
|
|
-- /w/!new GlobalWorkflowNewR GET
|
|
-- /w/#WflIdent GlobalWorkflowR GET DELETE POST
|
|
|
|
/s/#ShrIdent/w WorkflowsR GET POST
|
|
/s/#ShrIdent/w/!new WorkflowNewR GET
|
|
/s/#ShrIdent/w/#WflIdent WorkflowR GET DELETE POST
|
|
/s/#ShrIdent/w/#WflIdent/f WorkflowFieldsR GET POST
|
|
/s/#ShrIdent/w/#WflIdent/f/!new WorkflowFieldNewR GET
|
|
/s/#ShrIdent/w/#WflIdent/f/#FldIdent WorkflowFieldR GET DELETE POST
|
|
/s/#ShrIdent/w/#WflIdent/e WorkflowEnumsR GET POST
|
|
/s/#ShrIdent/w/#WflIdent/e/!new WorkflowEnumNewR GET
|
|
/s/#ShrIdent/w/#WflIdent/e/#EnmIdent WorkflowEnumR GET DELETE POST
|
|
/s/#ShrIdent/w/#WflIdent/e/#EnmIdent/c WorkflowEnumCtorsR GET POST
|
|
/s/#ShrIdent/w/#WflIdent/e/#EnmIdent/c/!new WorkflowEnumCtorNewR GET
|
|
/s/#ShrIdent/w/#WflIdent/e/#EnmIdent/c/#Text WorkflowEnumCtorR PUT DELETE POST
|
|
|
|
/s/#ShrIdent/m/#LocalMessageKeyHashid MessageR GET
|
|
|
|
/s/#ShrIdent/p/#PrjIdent/t TicketsR GET POST
|
|
/s/#ShrIdent/p/#PrjIdent/t/!tree TicketTreeR GET
|
|
/s/#ShrIdent/p/#PrjIdent/t/!new TicketNewR GET
|
|
/s/#ShrIdent/p/#PrjIdent/t/#Int TicketR GET PUT DELETE POST
|
|
/s/#ShrIdent/p/#PrjIdent/t/#Int/edit TicketEditR GET
|
|
/s/#ShrIdent/p/#PrjIdent/t/#Int/accept TicketAcceptR POST
|
|
/s/#ShrIdent/p/#PrjIdent/t/#Int/close TicketCloseR POST
|
|
/s/#ShrIdent/p/#PrjIdent/t/#Int/open TicketOpenR POST
|
|
/s/#ShrIdent/p/#PrjIdent/t/#Int/claim TicketClaimR POST
|
|
/s/#ShrIdent/p/#PrjIdent/t/#Int/unclaim TicketUnclaimR POST
|
|
/s/#ShrIdent/p/#PrjIdent/t/#Int/assign TicketAssignR GET POST
|
|
/s/#ShrIdent/p/#PrjIdent/t/#Int/unassign TicketUnassignR POST
|
|
/s/#ShrIdent/p/#PrjIdent/t/#Int/follow TicketFollowR POST
|
|
/s/#ShrIdent/p/#PrjIdent/tcr ClaimRequestsProjectR GET
|
|
/s/#ShrIdent/p/#PrjIdent/t/#Int/cr ClaimRequestsTicketR GET POST
|
|
/s/#ShrIdent/p/#PrjIdent/t/#Int/cr/new ClaimRequestNewR GET
|
|
/s/#ShrIdent/p/#PrjIdent/t/#Int/d TicketDiscussionR GET POST
|
|
/s/#ShrIdent/p/#PrjIdent/t/#Int/d/!reply TicketTopReplyR GET
|
|
/s/#ShrIdent/p/#PrjIdent/t/#Int/d/#MessageKeyHashid TicketMessageR POST
|
|
/s/#ShrIdent/p/#PrjIdent/t/#Int/d/#MessageKeyHashid/reply TicketReplyR GET
|
|
/s/#ShrIdent/p/#PrjIdent/t/#Int/deps TicketDepsR GET POST
|
|
/s/#ShrIdent/p/#PrjIdent/t/#Int/deps/!new TicketDepNewR GET
|
|
/s/#ShrIdent/p/#PrjIdent/t/#Int/deps/#Int TicketDepOldR POST DELETE
|
|
/s/#ShrIdent/p/#PrjIdent/t/#Int/rdeps TicketReverseDepsR GET
|
|
/tdeps/#TicketDepKeyHashid TicketDepR GET
|
|
/s/#ShrIdent/p/#PrjIdent/t/#Int/participants TicketParticipantsR GET
|
|
/s/#ShrIdent/p/#PrjIdent/t/#Int/team TicketTeamR GET
|
|
/s/#ShrIdent/p/#PrjIdent/t/#Int/events TicketEventsR GET
|
|
|
|
/s/#ShrIdent/p/#PrjIdent/w/+Texts WikiPageR GET
|