Skip to content
Snippets Groups Projects
Commit ef91e0f0 authored by Eugen Ciur's avatar Eugen Ciur
Browse files

add automates model

parent 1a2fbb6a
Branches
No related tags found
No related merge requests found
import Model, { attr, hasMany } from '@ember-data/model';
export default class AutomateModel extends Model {
@attr name;
@attr match;
@attr matching_algorithm;
@attr('boolean') is_case_sensitive;
@hasMany('tags') tags;
}
import Model, { attr, hasMany, belongsTo } from '@ember-data/model';
export default class NodeModel extends Model {
@attr title;
@attr model;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment