Commit ba3c402c authored by Pedro Eduardo Trujillo's avatar Pedro Eduardo Trujillo
Browse files

Reubica componente RestManager en app

parent 0dd7b1c9
Loading
Loading
Loading
Loading
+8 −8
Original line number Diff line number Diff line
@@ -4,21 +4,21 @@ define([
	, 'dojo/dom'
	, 'put-selector'
	, 'src/app/component/Analytics'
	, 'src/app/component/auth/Auth'
	, 'src/app/component/Credentials'
	, 'src/app/component/ExternalConfig'
	, 'src/app/component/layout/InnerLayoutImpl'
	, 'src/app/component/layout/OuterLayoutImpl'
	, 'src/app/component/Loading'
	, 'src/app/component/auth/Auth'
	, 'src/app/component/meta/MetaTags'
	, 'src/app/component/ModuleStore'
	, 'src/app/component/request/RestManagerImpl'
	, 'src/app/component/Router'
	, 'src/app/util/CheckBrowser'
	, 'src/component/notification/CommunicationCenter'
	, 'src/component/notification/Alert'
	, 'src/component/base/_Module'
	, 'src/component/base/_Store'
	, 'src/component/store/RestManagerImpl'
	, 'src/component/notification/Alert'
	, 'src/component/notification/CommunicationCenter'
	, 'src/redmicConfig'
	, 'src/util/CookieLoader'
	, 'templates/LoadingCustom'
@@ -28,21 +28,21 @@ define([
	, dom
	, put
	, Analytics
	, Auth
	, Credentials
	, ExternalConfig
	, InnerLayoutImpl
	, OuterLayoutImpl
	, Loading
	, Auth
	, MetaTags
	, ModuleStore
	, RestManagerImpl
	, Router
	, CheckBrowser
	, CommunicationCenter
	, Alert
	, _Module
	, _Store
	, RestManagerImpl
	, Alert
	, CommunicationCenter
	, redmicConfig
	, CookieLoader
	, LoadingCustomTemplate
+2 −2
Original line number Diff line number Diff line
@@ -2,14 +2,14 @@ define([
	'src/redmicConfig'
	, 'dojo/_base/declare'
	, 'dojo/_base/lang'
	, 'src/app/component/request/_RestManagerItfc'
	, 'src/component/base/_Module'
	, 'src/component/store/_RestManagerItfc'
], function(
	redmicConfig
	, declare
	, lang
	, _Module
	, _RestManagerItfc
	, _Module
) {

	return declare([_Module, _RestManagerItfc], {
+1 −1
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@ define([
	, 'dojo/_base/lang'
	, 'dojo/request/xhr'
	, 'dojo/request/notify'
	, 'src/component/store/RestManager'
	, 'src/app/component/request/RestManager'
	, 'src/redmicConfig'
	, 'src/util/Credentials'
], function(
+1 −2
Original line number Diff line number Diff line
@@ -10,8 +10,7 @@ define([

	return declare(null, {
		//	summary:
		//		Aplicación de componentes adicionales para la vista detalle de Activity, en función del tipo de layout
		//		establecido según su identificador. Si no está establecido, se decide según su categoría.
		//		Base para vistas detalle personalizables con widgets provistos por el componente WidgetProvider.

		postMixInProperties: function() {

Loading