First custom Dynamic Form Module generation

This commit is contained in:
Sebastian Seedorf
2017-05-30 09:10:38 +02:00
parent a5fdfa32d2
commit 48b4f67b06
13 changed files with 293 additions and 248 deletions

View File

@@ -0,0 +1,19 @@
import { Injectable, Inject } from '@angular/core';
import { Http } from '@angular/http';
import { HttpBaseService } from './http-base.service';
@Injectable()
export class HttpService extends HttpBaseService {
get httpBase() {
return "http://ccrruby1-1:3085";
//return '/public/mocks';
}
get httpSuffix() {
return "";
//return '.json';
}
constructor(@Inject(Http) _http: Http) {
super(_http);
}
}