From 0d6e50d54270a973647f828047828b80fdf8d013 Mon Sep 17 00:00:00 2001 From: Paul Slaughter Date: Tue, 7 Aug 2018 15:15:56 +0000 Subject: Create Web IDE MR and branch picker --- app/assets/javascripts/ide/stores/modules/branches/mutation_types.js | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 app/assets/javascripts/ide/stores/modules/branches/mutation_types.js (limited to 'app/assets/javascripts/ide/stores/modules/branches/mutation_types.js') diff --git a/app/assets/javascripts/ide/stores/modules/branches/mutation_types.js b/app/assets/javascripts/ide/stores/modules/branches/mutation_types.js new file mode 100644 index 00000000000..2272f7b9531 --- /dev/null +++ b/app/assets/javascripts/ide/stores/modules/branches/mutation_types.js @@ -0,0 +1,5 @@ +export const REQUEST_BRANCHES = 'REQUEST_BRANCHES'; +export const RECEIVE_BRANCHES_ERROR = 'RECEIVE_BRANCHES_ERROR'; +export const RECEIVE_BRANCHES_SUCCESS = 'RECEIVE_BRANCHES_SUCCESS'; + +export const RESET_BRANCHES = 'RESET_BRANCHES'; -- cgit v1.2.1