Skip to content

Commit f9d9468

Browse files
committed
models/api-token: Add crate_scopes and endpoint_scopes attributes
1 parent e40ff2f commit f9d9468

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

app/models/api-token.js

+4
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,8 @@ export default class ApiToken extends Model {
55
@attr token;
66
@attr('date') created_at;
77
@attr('date') last_used_at;
8+
/** @type string[] | null */
9+
@attr crate_scopes;
10+
/** @type string[] | null */
11+
@attr endpoint_scopes;
812
}

0 commit comments

Comments
 (0)