Skip to content

Commit

Permalink
feat: add strapi-config-sync and init the config (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
alcaprar committed Aug 3, 2024
1 parent 4f372a1 commit b520001
Show file tree
Hide file tree
Showing 39 changed files with 6,756 additions and 4 deletions.
Binary file modified backend/.tmp/dev.data.db
Binary file not shown.
461 changes: 461 additions & 0 deletions backend/config/sync/admin-role.strapi-author.json

Large diffs are not rendered by default.

401 changes: 401 additions & 0 deletions backend/config/sync/admin-role.strapi-editor.json

Large diffs are not rendered by default.

860 changes: 860 additions & 0 deletions backend/config/sync/admin-role.strapi-super-admin.json

Large diffs are not rendered by default.

13 changes: 13 additions & 0 deletions backend/config/sync/core-store.core_admin_auth.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"key": "core_admin_auth",
"value": {
"providers": {
"autoRegister": false,
"defaultRole": null,
"ssoLockedRoles": null
}
},
"type": "object",
"environment": null,
"tag": null
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,135 @@
{
"key": "plugin_content_manager_configuration_content_types::admin::api-token-permission",
"value": {
"settings": {
"bulkable": true,
"filterable": true,
"searchable": true,
"pageSize": 10,
"mainField": "action",
"defaultSortBy": "action",
"defaultSortOrder": "ASC"
},
"metadatas": {
"id": {
"edit": {},
"list": {
"label": "id",
"searchable": true,
"sortable": true
}
},
"action": {
"edit": {
"label": "action",
"description": "",
"placeholder": "",
"visible": true,
"editable": true
},
"list": {
"label": "action",
"searchable": true,
"sortable": true
}
},
"token": {
"edit": {
"label": "token",
"description": "",
"placeholder": "",
"visible": true,
"editable": true,
"mainField": "name"
},
"list": {
"label": "token",
"searchable": true,
"sortable": true
}
},
"createdAt": {
"edit": {
"label": "createdAt",
"description": "",
"placeholder": "",
"visible": false,
"editable": true
},
"list": {
"label": "createdAt",
"searchable": true,
"sortable": true
}
},
"updatedAt": {
"edit": {
"label": "updatedAt",
"description": "",
"placeholder": "",
"visible": false,
"editable": true
},
"list": {
"label": "updatedAt",
"searchable": true,
"sortable": true
}
},
"createdBy": {
"edit": {
"label": "createdBy",
"description": "",
"placeholder": "",
"visible": false,
"editable": true,
"mainField": "firstname"
},
"list": {
"label": "createdBy",
"searchable": true,
"sortable": true
}
},
"updatedBy": {
"edit": {
"label": "updatedBy",
"description": "",
"placeholder": "",
"visible": false,
"editable": true,
"mainField": "firstname"
},
"list": {
"label": "updatedBy",
"searchable": true,
"sortable": true
}
}
},
"layouts": {
"list": [
"id",
"action",
"token",
"createdAt"
],
"edit": [
[
{
"name": "action",
"size": 6
},
{
"name": "token",
"size": 6
}
]
]
},
"uid": "admin::api-token-permission"
},
"type": "object",
"environment": null,
"tag": null
}
Loading

0 comments on commit b520001

Please sign in to comment.