Skip to content

Commit

Permalink
Merge branch 'app-api'
Browse files Browse the repository at this point in the history
  • Loading branch information
nirmalhk7 committed May 16, 2021
2 parents c7a96b0 + 9d4a4f5 commit 0ce16d9
Show file tree
Hide file tree
Showing 57 changed files with 3,306 additions and 853 deletions.
14 changes: 13 additions & 1 deletion api/about-club/documentation/1.0.0/about-club.json
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,9 @@
"schemas": {
"About-club": {
"required": [
"id"
"id",
"main",
"footer"
],
"properties": {
"id": {
Expand All @@ -331,10 +333,17 @@
},
"footer": {
"type": "string"
},
"topnavbar_marquee": {
"type": "string"
}
}
},
"NewAbout-club": {
"required": [
"main",
"footer"
],
"properties": {
"main": {
"type": "string"
Expand All @@ -345,6 +354,9 @@
"footer": {
"type": "string"
},
"topnavbar_marquee": {
"type": "string"
},
"created_by": {
"type": "string"
},
Expand Down
28 changes: 28 additions & 0 deletions api/bigname/config/routes.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"routes": [
{
"method": "GET",
"path": "/bigname",
"handler": "bigname.find",
"config": {
"policies": []
}
},
{
"method": "PUT",
"path": "/bigname",
"handler": "bigname.update",
"config": {
"policies": []
}
},
{
"method": "DELETE",
"path": "/bigname",
"handler": "bigname.delete",
"config": {
"policies": []
}
}
]
}
8 changes: 8 additions & 0 deletions api/bigname/controllers/bigname.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
'use strict';

/**
* Read the documentation (https://strapi.io/documentation/developer-docs/latest/development/backend-customization.html#core-controllers)
* to customize this controller
*/

module.exports = {};
Loading

0 comments on commit 0ce16d9

Please sign in to comment.