mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
9 lines
162 B
CoffeeScript
9 lines
162 B
CoffeeScript
'use strict'
|
|
|
|
Application.Services.factory 'Admin', ["$resource", ($resource)->
|
|
$resource "/api/admins/:id",
|
|
{id: "@id"},
|
|
query:
|
|
isArray: false
|
|
]
|