Skip to content

Commit

Permalink
API Service path change
Browse files Browse the repository at this point in the history
  • Loading branch information
rohitazad committed Dec 26, 2017
1 parent 26f0833 commit 4601449
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/app/services/about-us.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { IAboutData } from '../about/about';
@Injectable()
export class AboutUsService {

private _homeApiUrl:string = 'http:https://rohitazad.com/ng4-rohitazadmalik/API_SERVICES/aboutPage.json'
private _homeApiUrl:string = './../API_SERVICES/aboutPage.json'
constructor(private _http: HttpClient) { }

getData():Observable<[IAboutData]>{
Expand Down
2 changes: 1 addition & 1 deletion src/app/services/blog.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { IBlogData } from '../blog/blog';

@Injectable()
export class BlogService {
private _blogSerApi:string = 'http:https://rohitazad.com/ng4-rohitazadmalik/API_SERVICES/blogPage.json';
private _blogSerApi:string = './../API_SERVICES/blogPage.json';
constructor(private _http:HttpClient) { }

getData():Observable<[IBlogData]>{
Expand Down
2 changes: 1 addition & 1 deletion src/app/services/experience.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { IExperienceData } from '../experience/experience';
@Injectable()
export class ExperienceService {

private _homeApiUrl:string = 'http:https://rohitazad.com/ng4-rohitazadmalik/API_SERVICES/experiences.json'
private _homeApiUrl:string = './../API_SERVICES/experiences.json'
constructor(private _http: HttpClient) { }

getData():Observable<[IExperienceData]>{
Expand Down
2 changes: 1 addition & 1 deletion src/app/services/home.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { IHomeData } from '../home/home';
@Injectable()
export class HomeService {

private _homeApiUrl:string = 'http:https://rohitazad.com/ng4-rohitazadmalik/API_SERVICES/homePage.json'
private _homeApiUrl:string = './../API_SERVICES/homePage.json'
constructor(private _http: HttpClient) { }


Expand Down
2 changes: 1 addition & 1 deletion src/app/services/portfolio.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export class PortfolioService {



private _portfolioApiUrl:string = 'http:https://rohitazad.com/ng4-rohitazadmalik/API_SERVICES/portfolioPage.json'
private _portfolioApiUrl:string = './../API_SERVICES/portfolioPage.json'
constructor(private _http: HttpClient) { }


Expand Down
2 changes: 1 addition & 1 deletion src/app/services/skill.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { ISkillData } from '../skill/skill';
@Injectable()
export class SkillService {

private _sakillApiUrl:string = 'http:https://rohitazad.com/ng4-rohitazadmalik/API_SERVICES/skillPage.json';
private _sakillApiUrl:string = './../API_SERVICES/skillPage.json';

constructor(private _http: HttpClient) { }

Expand Down

0 comments on commit 4601449

Please sign in to comment.