mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
16 lines
330 B
TypeScript
16 lines
330 B
TypeScript
|
const providers = [
|
||
|
{
|
||
|
id: 1,
|
||
|
name: 'Fablab',
|
||
|
status: 'active',
|
||
|
providable_type: 'DatabaseProvider',
|
||
|
strategy_name: 'database-fablab',
|
||
|
auth_provider_mappings_attributes: [],
|
||
|
mapping: [],
|
||
|
link_to_sso_profile: '/#!/dashboard/profile',
|
||
|
link_to_sso_connect: '/#'
|
||
|
}
|
||
|
];
|
||
|
|
||
|
export default providers;
|