mirror of
https://github.com/strapi/strapi.git
synced 2025-11-16 01:57:56 +00:00
14 lines
350 B
JavaScript
14 lines
350 B
JavaScript
import { SETTINGS_BASE_URL } from '../../../../../admin/src/config';
|
|
|
|
const customGlobalLinks = [
|
|
{
|
|
title: { id: 'Settings.sso.title' },
|
|
to: `${SETTINGS_BASE_URL}/single-sign-on`,
|
|
name: 'sso',
|
|
isDisplayed: false,
|
|
permissions: [{ action: 'admin::provider-login.read', subject: null }],
|
|
},
|
|
];
|
|
|
|
export default customGlobalLinks;
|