mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-04-16 16:19:09 +08:00

- Added access-api permission. - Started user profile UI work. - Created database table and model for tokens. - Fixed incorrect templates down migration :(
10 lines
157 B
PHP
10 lines
157 B
PHP
<?php namespace BookStack\Api;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class ApiToken extends Model
|
|
{
|
|
protected $fillable = ['name', 'expires_at'];
|
|
|
|
}
|