mirror of
https://github.com/hashicorp/vault.git
synced 2025-11-24 20:21:09 +01:00
* license: update headers to IBM Corp. * `make proto` * update offset because source file changed Signed-off-by: Ryan Cragun <me@ryan.ec> Co-authored-by: Ryan Cragun <me@ryan.ec>
21 lines
771 B
JavaScript
21 lines
771 B
JavaScript
/**
|
|
* Copyright IBM Corp. 2016, 2025
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Model, { hasMany, belongsTo, attr } from '@ember-data/model';
|
|
import { alias } from '@ember/object/computed';
|
|
import lazyCapabilities, { apiPath } from 'vault/macros/lazy-capabilities';
|
|
|
|
export default Model.extend({
|
|
approved: attr('boolean'),
|
|
requestPath: attr('string'),
|
|
requestEntity: belongsTo('identity/entity', { async: false, inverse: null }),
|
|
authorizations: hasMany('identity/entity', { async: false, inverse: null }),
|
|
|
|
authorizePath: lazyCapabilities(apiPath`sys/control-group/authorize`),
|
|
canAuthorize: alias('authorizePath.canUpdate'),
|
|
configurePath: lazyCapabilities(apiPath`sys/config/control-group`),
|
|
canConfigure: alias('configurePath.canUpdate'),
|
|
});
|