mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-29 02:53:50 +00:00
eslint fixes and new baseline
This commit is contained in:
@@ -2,9 +2,8 @@ import "es6-promise/auto";
|
||||
import { createStore } from "vuex";
|
||||
|
||||
import prepareLocations from "ChillActivityAssets/vuejs/Activity/store.locations";
|
||||
import {whoami} from "ChillMainAssets/lib/api/user";
|
||||
import {mapEntity} from "ChillCalendarAssets/vuejs/Calendar/store/utils";
|
||||
import {postLocation} from "ChillActivityAssets/vuejs/Activity/api";
|
||||
import { whoami } from "ChillMainAssets/lib/api/user";
|
||||
import { postLocation } from "ChillActivityAssets/vuejs/Activity/api";
|
||||
|
||||
const debug = process.env.NODE_ENV !== "production";
|
||||
|
||||
@@ -16,9 +15,7 @@ const store = createStore({
|
||||
availableLocations: [],
|
||||
me: null,
|
||||
},
|
||||
getters: {
|
||||
|
||||
},
|
||||
getters: {},
|
||||
actions: {
|
||||
addAvailableLocationGroup({ commit }, payload) {
|
||||
commit("addAvailableLocationGroup", payload);
|
||||
@@ -67,7 +64,7 @@ const store = createStore({
|
||||
// console.log("### mutation: updateLocation", value);
|
||||
state.activity.location = value;
|
||||
},
|
||||
}
|
||||
},
|
||||
});
|
||||
|
||||
whoami().then((me) => {
|
||||
|
Reference in New Issue
Block a user