]> git.localhorst.tv Git - alttp.git/blobdiff - app/Models/User.php
remove aosr web
[alttp.git] / app / Models / User.php
index 201361e68534eb869f94a1c3e50dc61140552a6b..72286a4891e48a5d789d2ba682eb4eff53fb79a1 100644 (file)
@@ -115,6 +115,10 @@ class User extends Authenticatable
        }
 
 
+       public function channel_crews() {
+               return $this->hasMany(ChannelCrew::class);
+       }
+
        public function participation() {
                return $this->hasMany(Participant::class);
        }
@@ -186,6 +190,7 @@ class User extends Authenticatable
        protected $fillable = [
                'id',
                'username',
+               'discord_nickname',
                'discriminator',
                'email',
                'avatar',