mirror of
https://github.com/strapi/strapi.git
synced 2025-11-09 14:51:29 +00:00
23 lines
443 B
JavaScript
23 lines
443 B
JavaScript
|
|
'use strict';
|
||
|
|
|
||
|
|
module.exports = {
|
||
|
|
actions: [
|
||
|
|
{
|
||
|
|
uid: 'provider-login.read',
|
||
|
|
displayName: 'Read',
|
||
|
|
pluginName: 'admin',
|
||
|
|
section: 'settings',
|
||
|
|
category: 'single sign on',
|
||
|
|
subCategory: 'options',
|
||
|
|
},
|
||
|
|
{
|
||
|
|
uid: 'provider-login.update',
|
||
|
|
displayName: 'Update',
|
||
|
|
pluginName: 'admin',
|
||
|
|
section: 'settings',
|
||
|
|
category: 'single sign on',
|
||
|
|
subCategory: 'options',
|
||
|
|
},
|
||
|
|
],
|
||
|
|
};
|