1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/app/assets/javascripts/services/authProvider.coffee
2016-03-23 18:39:41 +01:00

15 lines
337 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'
]