vault/ui/app/models/transform/transformation.js
Chelsea Shaw d9ee6252bf
Ui/transform roles list create (#9852)
* Can see list of roles, templates, and alphabets when you click on corresponding tab inside a transform secrets engine

* Cannot click on items in list other than transformations

* Can create a new transform role from the empty state or toolbar

* Creating a role redirects to the view of that role

* Breadcrumb links on transform roles work

* Role create form handles error
2020-08-28 15:38:00 -05:00

8 lines
183 B
JavaScript

import DS from 'ember-data';
export default DS.Model.extend({
name: DS.attr('string'),
template: DS.belongsTo('transform/template'),
roles: DS.belongsTo('transform/role'),
});