mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
18 lines
416 B
CoffeeScript
18 lines
416 B
CoffeeScript
'use strict'
|
|
|
|
Application.Services.factory 'AuthProvider', ["$resource", ($resource)->
|
|
$resource "/api/auth_providers/:id",
|
|
{id: "@id"},
|
|
update:
|
|
method: 'PUT'
|
|
mapping_fields:
|
|
method: 'GET'
|
|
url: '/api/auth_providers/mapping_fields'
|
|
active:
|
|
method: 'GET'
|
|
url: '/api/auth_providers/active'
|
|
send_code:
|
|
method: 'POST'
|
|
url: '/api/auth_providers/send_code'
|
|
]
|