Commit a4e4ec2f authored by jakeburden's avatar jakeburden

Add action to update group milestones

parent 3c5fb8f0
......@@ -45,6 +45,9 @@ export const updateReleaseNotes = ({ commit }, notes) => commit(types.UPDATE_REL
export const updateReleaseMilestones = ({ commit }, milestones) =>
commit(types.UPDATE_RELEASE_MILESTONES, milestones);
export const updateReleaseGroupMilestones = ({ commit }, groupMilestones) =>
commit(types.UPDATE_RELEASE_GROUP_MILESTONES, groupMilestones);
export const addEmptyAssetLink = ({ commit }) => {
commit(types.ADD_EMPTY_ASSET_LINK);
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment