mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-25 01:45:54 +08:00
d336ba6874
- 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'];
|
|
|
|
}
|