mirror of
https://github.com/elyby/accounts.git
synced 2024-11-06 08:11:24 +05:30
21 lines
350 B
PHP
21 lines
350 B
PHP
<?php
|
|
namespace common\models;
|
|
|
|
use Yii;
|
|
use yii\db\ActiveRecord;
|
|
|
|
/**
|
|
* Поля:
|
|
* @property string $id
|
|
*/
|
|
class OauthScope extends ActiveRecord {
|
|
|
|
const OFFLINE_ACCESS = 'offline_access';
|
|
const MINECRAFT_SERVER_SESSION = 'minecraft_server_session';
|
|
|
|
public static function tableName() {
|
|
return '{{%oauth_scopes}}';
|
|
}
|
|
|
|
}
|