mirror of
https://github.com/Neetpone/ponepaste.git
synced 2025-03-12 22:50:07 +01:00
26 lines
719 B
PHP
26 lines
719 B
PHP
<?php
|
|
namespace PonePaste\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class User extends Model {
|
|
protected $table = 'users';
|
|
protected $fillable = [
|
|
'username', 'password', 'recovery_code_hash', 'date'
|
|
];
|
|
|
|
public function session() {
|
|
return $this->hasOne(UserSession::class);
|
|
}
|
|
|
|
public function favourites() {
|
|
return $this->belongsToMany(Paste::class, 'user_favourites')->withPivot('f_time')
|
|
->whereRaw("((expiry IS NULL) OR ((expiry != 'SELF') AND (expiry > NOW())))");
|
|
}
|
|
|
|
public function pastes() {
|
|
return $this->hasMany(Paste::class)
|
|
->whereRaw("((expiry IS NULL) OR ((expiry != 'SELF') AND (expiry > NOW())))");
|
|
}
|
|
}
|
|
|