diff options
author | 2018-08-15 08:37:02 +0300 | |
---|---|---|
committer | 2018-08-15 08:37:07 +0300 | |
commit | 229dbd17cb098d06a50f11f5f77a8ee364376388 (patch) | |
tree | 4db0eaf24260f5d75615af00cd12c39ec20ac5cb /services/activity-spec/activity-spec-web/activity-spec-war/templates/markdown.hbs | |
parent | dc856bba284798fa8f1484abf8fc8140008ececb (diff) |
Remove activity spec from sdc
Remove activity spec module from sdc since it is now part of sdc-workflow-designer project
Change-Id: I730e60708bf6bae757be46113601c7ce4fc92a92
Issue-ID: SDC-1651
Signed-off-by: avigaffa <avi.gaffa@amdocs.com>
Diffstat (limited to 'services/activity-spec/activity-spec-web/activity-spec-war/templates/markdown.hbs')
-rw-r--r-- | services/activity-spec/activity-spec-web/activity-spec-war/templates/markdown.hbs | 105 |
1 files changed, 0 insertions, 105 deletions
diff --git a/services/activity-spec/activity-spec-web/activity-spec-war/templates/markdown.hbs b/services/activity-spec/activity-spec-web/activity-spec-war/templates/markdown.hbs deleted file mode 100644 index cc87c38244..0000000000 --- a/services/activity-spec/activity-spec-web/activity-spec-war/templates/markdown.hbs +++ /dev/null @@ -1,105 +0,0 @@ -#{{#info}}{{title}} - - -## {{join schemes " | "}}://{{host}}{{basePath}} - - -{{description}} - -{{#contact}} -[**Contact the developer**](mailto:{{email}}) -{{/contact}} - -**Version** {{version}} - -{{#license}}[**{{name}}**]({{url}}){{/license}} - -{{/info}} - -{{#if consumes}}**Consumes:** {{join consumes ", "}}{{/if}} - -{{#if produces}}**Produces:** {{join produces ", "}}{{/if}} - -{{#if securityDefinitions}} -# Security Definitions -{{/if}} -{{> security}} - -# APIs - -{{#each paths}} -## {{@key}} -{{#this}} -{{#get}} -### GET -{{> operation}} -{{/get}} - -{{#put}} -### PUT -{{> operation}} -{{/put}} - -{{#post}} -### POST - -{{> operation}} - -{{/post}} - -{{#delete}} -### DELETE -{{> operation}} -{{/delete}} - -{{#option}} -### OPTION -{{> operation}} -{{/option}} - -{{#patch}} -### PATCH -{{> operation}} -{{/patch}} - -{{#head}} -### HEAD -{{> operation}} -{{/head}} - -{{/this}} -{{/each}} - -# Definitions -{{#each definitions}} -## <a name="/definitions/{{key}}">{{@key}}</a> - -<table border="1"> - <tr> - <th>name</th> - <th>type</th> - <th>required</th> - <th>description</th> - <th>example</th> - </tr> - {{#each this.properties}} - <tr> - <td>{{@key}}</td> - <td> - {{#ifeq type "array"}} - {{#items.$ref}} - {{type}}[<a href="{{items.$ref}}">{{basename items.$ref}}</a>] - {{/items.$ref}} - {{^items.$ref}}{{type}}[{{items.type}}]{{/items.$ref}} - {{else}} - {{#$ref}}<a href="{{$ref}}">{{basename $ref}}</a>{{/$ref}} - {{^$ref}}{{type}}{{#format}} ({{format}}){{/format}}{{/$ref}} - {{/ifeq}} - </td> - <td>{{#required}}required{{/required}}{{^required}}optional{{/required}}</td> - <td>{{#description}}{{{description}}}{{/description}}{{^description}}-{{/description}}</td> - <td>{{example}}</td> - </tr> - {{/each}} -</table> -{{/each}}
\ No newline at end of file |