Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/applications/conpherence/constants/ConpherenceUpdateActions.php
12256 views
1
<?php
2
3
final class ConpherenceUpdateActions extends ConpherenceConstants {
4
5
const MESSAGE = 'message';
6
const DRAFT = 'draft';
7
const JOIN_ROOM = 'join_room';
8
const ADD_PERSON = 'add_person';
9
const REMOVE_PERSON = 'remove_person';
10
const ADD_STATUS = 'add_status';
11
const LOAD = 'load';
12
}
13
14