ec953e40a9354f1e8ad58e9bbfa37b977d2bd734
[ccsdk/apps.git] / sdnr / wireless-transport / code-Carbon-SR1 / apps / dlux / dlux-web / src / common / authentification / auth.module.js
1 /*
2  * Copyright (c) 2014 Inocybe Technologies, and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 define(['angular', './auth.services', 'common/config/env.module'], function (angular, services) {
10   'use strict';
11   var auth = angular.module('app.common.auth', ['config']);
12
13   // services
14   auth.factory('Auth', services.Auth);
15   auth.factory('Base64', services.Base64);
16   auth.factory('NbInterceptor', services.NbInterceptor);
17
18   return auth;
19 });