2021-04-19 18:42:19 +01:00
|
|
|
/*
|
|
|
|
GoToSocial
|
|
|
|
Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Affero General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package gtsmodel
|
|
|
|
|
|
|
|
const (
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsArticle https://www.w3.org/TR/activitystreams-vocabulary/#dfn-article
|
2021-05-21 14:48:26 +01:00
|
|
|
ActivityStreamsArticle = "Article"
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsAudio https://www.w3.org/TR/activitystreams-vocabulary/#dfn-audio
|
2021-05-21 14:48:26 +01:00
|
|
|
ActivityStreamsAudio = "Audio"
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsDocument https://www.w3.org/TR/activitystreams-vocabulary/#dfn-document
|
2021-05-28 18:57:04 +01:00
|
|
|
ActivityStreamsDocument = "Document"
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsEvent https://www.w3.org/TR/activitystreams-vocabulary/#dfn-event
|
2021-05-21 14:48:26 +01:00
|
|
|
ActivityStreamsEvent = "Event"
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsImage https://www.w3.org/TR/activitystreams-vocabulary/#dfn-image
|
2021-05-21 14:48:26 +01:00
|
|
|
ActivityStreamsImage = "Image"
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsNote https://www.w3.org/TR/activitystreams-vocabulary/#dfn-note
|
2021-05-21 14:48:26 +01:00
|
|
|
ActivityStreamsNote = "Note"
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsPage https://www.w3.org/TR/activitystreams-vocabulary/#dfn-page
|
2021-05-21 14:48:26 +01:00
|
|
|
ActivityStreamsPage = "Page"
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsPlace https://www.w3.org/TR/activitystreams-vocabulary/#dfn-place
|
2021-05-21 14:48:26 +01:00
|
|
|
ActivityStreamsPlace = "Place"
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsProfile https://www.w3.org/TR/activitystreams-vocabulary/#dfn-profile
|
2021-05-21 14:48:26 +01:00
|
|
|
ActivityStreamsProfile = "Profile"
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsRelationship https://www.w3.org/TR/activitystreams-vocabulary/#dfn-relationship
|
2021-05-21 14:48:26 +01:00
|
|
|
ActivityStreamsRelationship = "Relationship"
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsTombstone https://www.w3.org/TR/activitystreams-vocabulary/#dfn-tombstone
|
2021-05-21 14:48:26 +01:00
|
|
|
ActivityStreamsTombstone = "Tombstone"
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsVideo https://www.w3.org/TR/activitystreams-vocabulary/#dfn-video
|
2021-05-21 14:48:26 +01:00
|
|
|
ActivityStreamsVideo = "Video"
|
2021-04-19 18:42:19 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsApplication https://www.w3.org/TR/activitystreams-vocabulary/#dfn-application
|
2021-05-21 14:48:26 +01:00
|
|
|
ActivityStreamsApplication = "Application"
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsGroup https://www.w3.org/TR/activitystreams-vocabulary/#dfn-group
|
2021-05-21 14:48:26 +01:00
|
|
|
ActivityStreamsGroup = "Group"
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsOrganization https://www.w3.org/TR/activitystreams-vocabulary/#dfn-organization
|
2021-05-21 14:48:26 +01:00
|
|
|
ActivityStreamsOrganization = "Organization"
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsPerson https://www.w3.org/TR/activitystreams-vocabulary/#dfn-person
|
2021-05-21 14:48:26 +01:00
|
|
|
ActivityStreamsPerson = "Person"
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsService https://www.w3.org/TR/activitystreams-vocabulary/#dfn-service
|
2021-05-21 14:48:26 +01:00
|
|
|
ActivityStreamsService = "Service"
|
2021-04-19 18:42:19 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsAccept https://www.w3.org/TR/activitystreams-vocabulary/#dfn-accept
|
2021-05-21 14:48:26 +01:00
|
|
|
ActivityStreamsAccept = "Accept"
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsAdd https://www.w3.org/TR/activitystreams-vocabulary/#dfn-add
|
2021-05-21 14:48:26 +01:00
|
|
|
ActivityStreamsAdd = "Add"
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsAnnounce https://www.w3.org/TR/activitystreams-vocabulary/#dfn-announce
|
2021-05-21 14:48:26 +01:00
|
|
|
ActivityStreamsAnnounce = "Announce"
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsArrive https://www.w3.org/TR/activitystreams-vocabulary/#dfn-arrive
|
2021-05-21 14:48:26 +01:00
|
|
|
ActivityStreamsArrive = "Arrive"
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsBlock https://www.w3.org/TR/activitystreams-vocabulary/#dfn-block
|
2021-05-21 14:48:26 +01:00
|
|
|
ActivityStreamsBlock = "Block"
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsCreate https://www.w3.org/TR/activitystreams-vocabulary/#dfn-create
|
2021-05-21 14:48:26 +01:00
|
|
|
ActivityStreamsCreate = "Create"
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsDelete https://www.w3.org/TR/activitystreams-vocabulary/#dfn-delete
|
2021-05-21 14:48:26 +01:00
|
|
|
ActivityStreamsDelete = "Delete"
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsDislike https://www.w3.org/TR/activitystreams-vocabulary/#dfn-dislike
|
2021-05-21 14:48:26 +01:00
|
|
|
ActivityStreamsDislike = "Dislike"
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsFlag https://www.w3.org/TR/activitystreams-vocabulary/#dfn-flag
|
2021-05-21 14:48:26 +01:00
|
|
|
ActivityStreamsFlag = "Flag"
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsFollow https://www.w3.org/TR/activitystreams-vocabulary/#dfn-follow
|
2021-05-21 14:48:26 +01:00
|
|
|
ActivityStreamsFollow = "Follow"
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsIgnore https://www.w3.org/TR/activitystreams-vocabulary/#dfn-ignore
|
2021-05-21 14:48:26 +01:00
|
|
|
ActivityStreamsIgnore = "Ignore"
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsInvite https://www.w3.org/TR/activitystreams-vocabulary/#dfn-invite
|
2021-05-21 14:48:26 +01:00
|
|
|
ActivityStreamsInvite = "Invite"
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsJoin https://www.w3.org/TR/activitystreams-vocabulary/#dfn-join
|
2021-05-21 14:48:26 +01:00
|
|
|
ActivityStreamsJoin = "Join"
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsLeave https://www.w3.org/TR/activitystreams-vocabulary/#dfn-leave
|
2021-05-21 14:48:26 +01:00
|
|
|
ActivityStreamsLeave = "Leave"
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsLike https://www.w3.org/TR/activitystreams-vocabulary/#dfn-like
|
2021-05-21 14:48:26 +01:00
|
|
|
ActivityStreamsLike = "Like"
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsListen https://www.w3.org/TR/activitystreams-vocabulary/#dfn-listen
|
2021-05-21 14:48:26 +01:00
|
|
|
ActivityStreamsListen = "Listen"
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsMove https://www.w3.org/TR/activitystreams-vocabulary/#dfn-move
|
2021-05-21 14:48:26 +01:00
|
|
|
ActivityStreamsMove = "Move"
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsOffer https://www.w3.org/TR/activitystreams-vocabulary/#dfn-offer
|
2021-05-21 14:48:26 +01:00
|
|
|
ActivityStreamsOffer = "Offer"
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsQuestion https://www.w3.org/TR/activitystreams-vocabulary/#dfn-question
|
2021-05-21 14:48:26 +01:00
|
|
|
ActivityStreamsQuestion = "Question"
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsReject https://www.w3.org/TR/activitystreams-vocabulary/#dfn-reject
|
2021-05-21 14:48:26 +01:00
|
|
|
ActivityStreamsReject = "Reject"
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsRead https://www.w3.org/TR/activitystreams-vocabulary/#dfn-read
|
2021-05-21 14:48:26 +01:00
|
|
|
ActivityStreamsRead = "Read"
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsRemove https://www.w3.org/TR/activitystreams-vocabulary/#dfn-remove
|
2021-05-21 14:48:26 +01:00
|
|
|
ActivityStreamsRemove = "Remove"
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsTentativeReject https://www.w3.org/TR/activitystreams-vocabulary/#dfn-tentativereject
|
2021-05-21 14:48:26 +01:00
|
|
|
ActivityStreamsTentativeReject = "TentativeReject"
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsTentativeAccept https://www.w3.org/TR/activitystreams-vocabulary/#dfn-tentativeaccept
|
2021-05-21 14:48:26 +01:00
|
|
|
ActivityStreamsTentativeAccept = "TentativeAccept"
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsTravel https://www.w3.org/TR/activitystreams-vocabulary/#dfn-travel
|
2021-05-21 14:48:26 +01:00
|
|
|
ActivityStreamsTravel = "Travel"
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsUndo https://www.w3.org/TR/activitystreams-vocabulary/#dfn-undo
|
2021-05-21 14:48:26 +01:00
|
|
|
ActivityStreamsUndo = "Undo"
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsUpdate https://www.w3.org/TR/activitystreams-vocabulary/#dfn-update
|
2021-05-21 14:48:26 +01:00
|
|
|
ActivityStreamsUpdate = "Update"
|
2021-04-20 17:14:23 +01:00
|
|
|
// ActivityStreamsView https://www.w3.org/TR/activitystreams-vocabulary/#dfn-view
|
2021-05-21 14:48:26 +01:00
|
|
|
ActivityStreamsView = "View"
|
2021-04-19 18:42:19 +01:00
|
|
|
)
|