mirror of
https://github.com/flarum/framework.git
synced 2025-01-19 17:42:46 +08:00
Move Group to its own namespace
We’ll need to add commands etc. for group management in the future
This commit is contained in:
parent
ab78546349
commit
f3c4b24ad4
|
@ -1,6 +1,6 @@
|
|||
<?php namespace Flarum\Api\Actions\Groups;
|
||||
|
||||
use Flarum\Core\Users\Group;
|
||||
use Flarum\Core\Groups\Group;
|
||||
use Flarum\Api\Actions\SerializeCollectionAction;
|
||||
use Flarum\Api\JsonApiRequest;
|
||||
use Tobscure\JsonApi\Document;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<?php namespace Flarum\Core\Users;
|
||||
<?php namespace Flarum\Core\Groups;
|
||||
|
||||
use Flarum\Core\Model;
|
||||
|
|
@ -1,5 +1,7 @@
|
|||
<?php namespace Flarum\Core\Users;
|
||||
|
||||
use Flarum\Core\Groups\Group;
|
||||
|
||||
class Guest extends User
|
||||
{
|
||||
/**
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
<?php namespace Flarum\Core\Users;
|
||||
|
||||
use Flarum\Core\Groups\Group;
|
||||
use Flarum\Core\Model;
|
||||
use Flarum\Core\Notifications\Notification;
|
||||
use Illuminate\Contracts\Hashing\Hasher;
|
||||
|
@ -487,7 +488,7 @@ class User extends Model
|
|||
*/
|
||||
public function groups()
|
||||
{
|
||||
return $this->belongsToMany('Flarum\Core\Users\Group', 'users_groups');
|
||||
return $this->belongsToMany('Flarum\Core\Groups\Group', 'users_groups');
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue
Block a user