feat: Add the ability to create custom attribute (#2903)
This commit is contained in:
parent
75329e5de1
commit
fdcc322660
12 changed files with 550 additions and 3 deletions
9
app/javascript/dashboard/api/attributes.js
Normal file
9
app/javascript/dashboard/api/attributes.js
Normal file
|
@ -0,0 +1,9 @@
|
|||
import ApiClient from './ApiClient';
|
||||
|
||||
class AttributeAPI extends ApiClient {
|
||||
constructor() {
|
||||
super('custom_attribute_definitions', { accountScoped: true });
|
||||
}
|
||||
}
|
||||
|
||||
export default new AttributeAPI();
|
Loading…
Add table
Add a link
Reference in a new issue