mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-08 15:54:51 +00:00
34 lines
652 B
PHP
34 lines
652 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Support\Str;
|
|
|
|
class Contact extends Model
|
|
{
|
|
protected $casts = [
|
|
'responded_at' => 'datetime',
|
|
];
|
|
|
|
public function user()
|
|
{
|
|
return $this->belongsTo(User::class);
|
|
}
|
|
|
|
public function adminUrl()
|
|
{
|
|
return url('/i/admin/messages/show/'.$this->id);
|
|
}
|
|
|
|
public function userResponseUrl()
|
|
{
|
|
return url('/i/contact-admin-response/'.$this->id);
|
|
}
|
|
|
|
public function getMessageId()
|
|
{
|
|
return $this->id.'-'.(string) Str::uuid().'@'.strtolower(config('pixelfed.domain.app', 'example.org'));
|
|
}
|
|
}
|