Corrected merge issues from Master
This commit is contained in:
@@ -157,7 +157,7 @@
|
|||||||
"type": "provider",
|
"type": "provider",
|
||||||
"implementation": "creation/CreateActionProvider.js",
|
"implementation": "creation/CreateActionProvider.js",
|
||||||
"depends": ["$q", "typeService",
|
"depends": ["$q", "typeService",
|
||||||
"navigationService"]
|
"navigationService", "policyService"]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"key": "CreationService",
|
"key": "CreationService",
|
||||||
|
|||||||
@@ -46,10 +46,11 @@ define(
|
|||||||
* introduced in this bundle), responsible for handling actual
|
* introduced in this bundle), responsible for handling actual
|
||||||
* object creation.
|
* object creation.
|
||||||
*/
|
*/
|
||||||
function CreateActionProvider($q, typeService, navigationService) {
|
function CreateActionProvider($q, typeService, navigationService, policyService) {
|
||||||
this.typeService = typeService;
|
this.typeService = typeService;
|
||||||
this.navigationService = navigationService;
|
this.navigationService = navigationService;
|
||||||
this.$q = $q;
|
this.$q = $q;
|
||||||
|
this.policyService = policyService;
|
||||||
}
|
}
|
||||||
|
|
||||||
CreateActionProvider.prototype.getActions = function (actionContext) {
|
CreateActionProvider.prototype.getActions = function (actionContext) {
|
||||||
|
|||||||
Reference in New Issue
Block a user