Welcome to mirror list, hosted at ThFree Co, Russian Federation.

getters.js « stores « mr_notes « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e48cfcd956419b65265e13cb8ac8a793b6a545df (plain)
1
2
3
4
5
export default {
  isLoggedIn(state, getters) {
    return Boolean(getters.getUserData.id);
  },
};