feat: Adds the ability to create a new article (#5255)

This commit is contained in:
Muhsin Keloth
2022-08-18 11:45:08 +05:30
committed by GitHub
parent 45d0d101b1
commit 0cd08065d1
9 changed files with 117 additions and 36 deletions

View File

@@ -84,8 +84,10 @@ export const actions = {
});
}
},
setPortalId: async ({ commit }, portalId) => {
commit(types.SET_SELECTED_PORTAL_ID, portalId);
},
updatePortal: async ({ commit }, portal) => {
commit(types.UPDATE_PORTAL_ENTRY, portal);
},
};