mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-06 16:11:49 -05:00
22 lines
458 B
JavaScript
22 lines
458 B
JavaScript
let Base;
|
|
|
|
function NotificationTemplateModel (method, resource, config) {
|
|
Base.call(this, 'notification_templates');
|
|
|
|
this.Constructor = NotificationTemplateModel;
|
|
|
|
return this.create(method, resource, config);
|
|
}
|
|
|
|
function NotificationTemplateModelLoader (BaseModel) {
|
|
Base = BaseModel;
|
|
|
|
return NotificationTemplateModel;
|
|
}
|
|
|
|
NotificationTemplateModelLoader.$inject = [
|
|
'BaseModel'
|
|
];
|
|
|
|
export default NotificationTemplateModelLoader;
|