You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pixelfed/app/Models/OauthClient.php

17 lines
298 B
PHTML

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
class OauthClient extends Model
{
9 months ago
protected $table = 'oauth_clients';
public function user(): BelongsTo
9 months ago
{
return $this->belongsTo(User::class);
}
}