diff --git a/js/src/common/models/Scope.js b/js/src/common/models/Scope.js index 2bf3eea..97810b7 100644 --- a/js/src/common/models/Scope.js +++ b/js/src/common/models/Scope.js @@ -2,6 +2,8 @@ import Model from 'flarum/common/Model'; export default class Client extends Model { scope = Model.attribute('scope'); + resource_path = Model.attribute('resource_path'); + method = Model.attribute('method'); is_default = Model.attribute('is_default', value => value === 1); scope_name = Model.attribute('scope_name'); scope_icon = Model.attribute('scope_icon');