1 | <?php |
||
7 | class Scope |
||
8 | { |
||
9 | const SCOPE_USER_READ = 'user_read'; |
||
10 | const SCOPE_USER_BLOCKS_EDIT = 'user_blocks_edit'; |
||
11 | const SCOPE_USER_BLOCKS_READ = 'user_blocks_read'; |
||
12 | const SCOPE_USER_FOLLOWERS_EDIT = 'user_follows_edit'; |
||
13 | const CHANNEL_READ = 'channel_read'; |
||
14 | const CHANNEL_EDITOR = 'channel_editor'; |
||
15 | const CHANNEL_COMMERCIAL = 'channel_commercial'; |
||
16 | const CHANNEL_STREAM = 'channel_stream'; |
||
17 | const CHANNEL_SUBSCRIPTIONS = 'channel_subscriptions'; |
||
18 | const USER_SUBSCRIPTIONS = 'user_subscriptions'; |
||
19 | const CHANNEL_CHECK_SUBSCRIPTION = 'channel_check_subscription'; |
||
20 | const CHAT_LOGIN = 'chat_login'; |
||
21 | |||
22 | public static function generate($scopes = []) |
||
30 | } |