Leave it for now

This commit is contained in:
2018-12-13 08:52:41 -05:00
parent f287f49c1c
commit 0c5e514d33
10 changed files with 26242 additions and 1 deletions
@@ -1,2 +1,2 @@
.ui.info.message panda-action-identifier-info-popup
= panda-action-identifier-info-popup identifier='abcd'
= panda-action-identifier-info-popup identifier='UUID-241123'
+5
View File
@@ -0,0 +1,5 @@
import Response from 'ember-cli-mirage/response'
config = ->
@get "/panda/api/v1/workflow_action_definitions/UUID-241123/action_info", (schema, request) ->
new Response(200, {'Content-Type': 'text/html'}, "<h3>Hiiiii</h3>")
export default config
+9
View File
@@ -0,0 +1,9 @@
export default function(/* server */) {
/*
Seed your development database using your factories.
This data will not be loaded in your tests.
*/
// server.createList('post', 10);
}
@@ -0,0 +1,4 @@
import { JSONAPISerializer } from 'ember-cli-mirage';
export default JSONAPISerializer.extend({
});
+3
View File
@@ -2,4 +2,7 @@ import { run } from '@ember/runloop';
export default function destroyApp(application) {
run(application, 'destroy');
if (window.server) {
window.server.shutdown();
}
}