service.js 359 Bytes
angular.module('focaBotoneraPrincipal')
    .service('focaBotoneraPrincipalService', [
        '$http', 'API_ENDPOINT',
        function($http, API_ENDPOINT) {
            return {
                obtenerBotones: function(app) {
                    return $http.get(API_ENDPOINT.URL + '/boton' + '/' + app);
                }
            };
        }
    ]);