gitlab-org--gitlab-foss/app/assets/javascripts/mr_notes/stores/getters.js
Nathan Friend bee3c7e847 Comply with no-implicit-coercion rule (CE)
This commit is the result of running `yarn eslint --fix` after enabling
the `no-implicit-coercion` ESLint rule.  This rule has been added to
our ESLint config here:

https://gitlab.com/gitlab-org/gitlab-eslint-config/merge_requests/14
2019-06-03 22:51:02 +00:00

5 lines
100 B
JavaScript

export default {
isLoggedIn(state, getters) {
return Boolean(getters.getUserData.id);
},
};