UNPKG

authorify-client

Version:

Client for Authorify authorization and authentication system for REST server

31 lines (27 loc) 860 B
/** * @class node_modules.authorify.config.browser * @ignore * * @author Marcello Gesmundo * * # License * * Copyright (c) 2012-2014 Yoovant by Marcello Gesmundo. All rights reserved. * * This program is released under a GNU Affero General Public License version 3 or above, which in summary means: * * - You __can use__ this program for __no cost__. * - You __can use__ this program for __both personal and commercial reasons__. * - You __do not have to share your own program's code__ which uses this program. * - You __have to share modifications__ (e.g bug-fixes) you've made to this program. * * For more convoluted language, see the LICENSE file. * */ module.exports = function(app) { 'use strict'; require('./default')(app); require('logged-errors'); app.logger.info('%s browser config loaded', app.name); return app; };