1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2025-03-04 02:28:08 +00:00
pixelfed/app/UserInvite.php

16 lines
238 B
PHP
Raw Normal View History

2019-02-15 20:13:24 -07:00
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class UserInvite extends Model
{
public function url()
{
$path = '/i/invite/code';
$url = url($path, [$this->key, $this->token]);
return $url;
}
}