summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ide/stores/actions.js
diff options
context:
space:
mode:
authorFilipa Lacerda <filipa@gitlab.com>2018-01-04 15:53:16 +0000
committerFilipa Lacerda <filipa@gitlab.com>2018-01-04 15:53:16 +0000
commit41cc4cf5022247e90bacd4497d9bdccf77b35f98 (patch)
treea7646c7f8a9a3449efab08efd11254c0216a56d6 /app/assets/javascripts/ide/stores/actions.js
parentbb7e04a141c1727b0b8cb1850d4ffb19eab72e45 (diff)
parent1e950e3148d31cb3b242cb21be11e04964c2a037 (diff)
downloadgitlab-ce-41cc4cf5022247e90bacd4497d9bdccf77b35f98.tar.gz
Merge branch 'master' into 34312-eslint-vue-plugin
* master: (33 commits) Include integration tests in CE/EE testing documentation 41054-Disallow creation of new Kubernetes integrations Resolve "Resizable file list and commit panel" Make tooltip placement bottom by default as per design guidelines Fix groups list icon, timestamp alignment and row height Avoid leaving a push event empty if payload cannot be created Use heredoc for long strings so it's easier to read Simplify metrics fetching for closed/merged MRs Better English Fix method lookup Use a background migration for issues.closed_at Handle Gitaly aborted merge due to branch update Fix API endpoints to edit wiki pages where project belongs to a group Fixes spec failures due to not returning metrics for MRs other than closed/merged Cache merged and closed events data in merge_request_metrics table Update test to remove carent icon check Update styles to fix SVG caret alignment Update selector to test SVG icon name Use SVG sprite icons Add support for max_count option to Git::Repository#count_commits ...
Diffstat (limited to 'app/assets/javascripts/ide/stores/actions.js')
-rw-r--r--app/assets/javascripts/ide/stores/actions.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/assets/javascripts/ide/stores/actions.js b/app/assets/javascripts/ide/stores/actions.js
index c01046c8c76..335882bb6d7 100644
--- a/app/assets/javascripts/ide/stores/actions.js
+++ b/app/assets/javascripts/ide/stores/actions.js
@@ -63,6 +63,10 @@ export const setPanelCollapsedStatus = ({ commit }, { side, collapsed }) => {
}
};
+export const setResizingStatus = ({ commit }, resizing) => {
+ commit(types.SET_RESIZING_STATUS, resizing);
+};
+
export const checkCommitStatus = ({ state }) =>
service
.getBranchData(state.currentProjectId, state.currentBranchId)