debian-mirror-gitlab/app/assets/javascripts/super_sidebar/constants.js
2023-05-27 22:25:52 +05:30

14 lines
424 B
JavaScript

// Note: all constants defined here are considered internal implementation
// details for the sidebar. They should not be imported by anything outside of
// the super_sidebar directory.
import Vue from 'vue';
export const SIDEBAR_PORTAL_ID = 'sidebar-portal-mount';
export const portalState = Vue.observable({
ready: false,
});
export const MAX_FREQUENT_PROJECTS_COUNT = 5;
export const MAX_FREQUENT_GROUPS_COUNT = 3;