Skip to content

Commit

Permalink
Merge pull request #293 from uasoft-indonesia/develop
Browse files Browse the repository at this point in the history
Prepare 2.0.0-rc.11
  • Loading branch information
rizkiheryandi authored Jul 30, 2021
2 parents 06a5406 + 1a2f761 commit 456b212
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "2.0.0-rc.10",
"version": "2.0.0-rc.11",
"name": "badaso/core",
"description": "The First Open-Source Laravel Vue headless CMS (PWA dashboard + CRUD + API generator & more) for more productivity !",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion src/Config/lfm.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@

'folder_categories' => [
'file' => [
'folder_name' => 'public/files',
'folder_name' => 'files',
'startup_view' => 'list',
'max_size' => 50000, // size in KB
'valid_mime' => [
Expand Down
8 changes: 8 additions & 0 deletions src/resources/js/store/modules/badaso.js
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@ export default {
menu: res.data.menu,
menuItems: menuItems,
};
state.meta = res.meta
})
.catch((err) => {});
},
Expand All @@ -151,6 +152,7 @@ export default {
.component()
.then((res) => {
state.componentList = res.data.components;
state.meta = res.meta
})
.catch((err) => {});
},
Expand All @@ -159,6 +161,7 @@ export default {
.configurationGroups()
.then((res) => {
state.groupList = res.data.groups;
state.meta = res.meta
})
.catch((err) => {});
},
Expand All @@ -176,6 +179,7 @@ export default {
.user()
.then((res) => {
state.user = res.data.user;
state.meta = res.meta
})
.catch((err) => {});
},
Expand All @@ -197,6 +201,7 @@ export default {
.verify()
.then((res) => {
state.verified = true;
state.meta = res.meta
})
.catch((err) => {
if (err.status) {
Expand All @@ -213,6 +218,9 @@ export default {
SET_GLOBAL_STATE(state, { key, value }) {
state[key] = value;
},
SET_META(state, meta) {
state.meta = meta
}
},
actions: {},
getters: {
Expand Down

0 comments on commit 456b212

Please sign in to comment.