]>
BookStack Code Mirror - bookstack/blob - app/Permission.php
projects
/
bookstack
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Updated views for permissions and added notifications. Fixes #2 and #7
[bookstack]
/
app
/
Permission.php
1
<?php
2
3
namespace Oxbow;
4
5
use Illuminate\Database\Eloquent\Model;
6
7
class Permission extends Model
8
{
9
/**
10
* The roles that belong to the permission.
11
*/
12
public function roles()
13
{
14
return $this->belongsToMany('Oxbow\Permissions');
15
}
16
}