create db completion service and mock data

This commit is contained in:
Jesse Lucas
2020-03-29 16:51:12 -04:00
parent bc7d71ee3d
commit 09673ba0c6
9 changed files with 107 additions and 8 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ import Folder from '../folder'
export class DbStatusService {
private dbStatusUrl = environment.production ? apiURL + 'rest/db/status' : 'api/dbStatus';
constructor(private http: HttpClient, private cookieService: CookieService) { }
constructor(private http: HttpClient) { }
getFolderStatus(id: string): Observable<Folder.Status> {
let httpOptions: { params: HttpParams };