Commit ca9bc2c843cd1878c02378cd2a55f8b29aaf47a2
1 parent
74c79a64
Exists in
master
and in
34 other branches
Fixed NoosferoService references
Showing
2 changed files
with
1 additions
and
2 deletions
Show diff stats
src/app/components/auth/auth_controller.ts
@@ -3,7 +3,7 @@ import {AuthService} from "./auth_service"; | @@ -3,7 +3,7 @@ import {AuthService} from "./auth_service"; | ||
3 | 3 | ||
4 | export class AuthController { | 4 | export class AuthController { |
5 | 5 | ||
6 | - static $inject = ["noosfero", "$log", "$stateParams", "AuthService"]; | 6 | + static $inject = ["$log", "$stateParams", "AuthService"]; |
7 | 7 | ||
8 | constructor( | 8 | constructor( |
9 | private noosfero: any, | 9 | private noosfero: any, |
src/app/profile/profile.component.ts
@@ -6,7 +6,6 @@ import {ContentViewer} from "../content-viewer/content-viewer.component"; | @@ -6,7 +6,6 @@ import {ContentViewer} from "../content-viewer/content-viewer.component"; | ||
6 | import {ContentViewerActions} from "../content-viewer/content-viewer-actions.component"; | 6 | import {ContentViewerActions} from "../content-viewer/content-viewer-actions.component"; |
7 | import {NoosferoActivities} from "../components/noosfero-activities/activities.component"; | 7 | import {NoosferoActivities} from "../components/noosfero-activities/activities.component"; |
8 | import {ProfileService} from "../../lib/ng-noosfero-api/http/profile.service"; | 8 | import {ProfileService} from "../../lib/ng-noosfero-api/http/profile.service"; |
9 | -import {NoosferoService} from "../components/noosfero/noosfero.service"; | ||
10 | 9 | ||
11 | import * as noosferoModels from "./../models/interfaces"; | 10 | import * as noosferoModels from "./../models/interfaces"; |
12 | 11 |