aboutsummaryrefslogtreecommitdiff
path: root/lib/classes/OAuth2/Models/AuthCode.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/classes/OAuth2/Models/AuthCode.php')
-rw-r--r--lib/classes/OAuth2/Models/AuthCode.php35
1 files changed, 35 insertions, 0 deletions
diff --git a/lib/classes/OAuth2/Models/AuthCode.php b/lib/classes/OAuth2/Models/AuthCode.php
new file mode 100644
index 0000000..1a43c8c
--- /dev/null
+++ b/lib/classes/OAuth2/Models/AuthCode.php
@@ -0,0 +1,35 @@
+<?php
+
+namespace Studip\OAuth2\Models;
+
+/**
+ * @property int $id
+ * @property string $user_id
+ * @property string $client_id
+ * @property string $scopes
+ * @property bool $revoked
+ * @property int $expires_at
+ * @property int $mkdate
+ * @property int $chdate
+ */
+class AuthCode extends \SimpleORMap
+{
+ use RevokedHelper;
+
+ protected static function configure($config = [])
+ {
+ $config['db_table'] = 'oauth2_auth_codes';
+
+ $config['belongs_to']['client'] = [
+ 'class_name' => Client::class,
+ 'foreign_key' => 'client_id',
+ ];
+
+ $config['belongs_to']['user'] = [
+ 'class_name' => \User::class,
+ 'foreign_key' => 'user_id',
+ ];
+
+ parent::configure($config);
+ }
+}