WIP
This commit is contained in:
@@ -2,6 +2,7 @@ import { Injectable } from '@angular/core';
|
||||
import { CrudService } from '../../../services/crudServices/crud.service';
|
||||
import { MD2MobInfo, MD2MobLevelInfo, MD2MobSkill } from '../massive-darkness2.db.model';
|
||||
import { HttpClient } from '@angular/common/http';
|
||||
import { MD2HeroProfile } from '../massive-darkness2.model';
|
||||
|
||||
@Injectable({
|
||||
providedIn: 'root'
|
||||
@@ -34,4 +35,16 @@ export class MD2MobSkillService extends CrudService<MD2MobSkill> {
|
||||
super(http, (action: string = null) => { return `MD2MobSkill${(action ? `/${action}` : '')}` });
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
@Injectable({
|
||||
providedIn: 'root'
|
||||
})
|
||||
export class MD2HeroProfileService extends CrudService<MD2HeroProfile> {
|
||||
|
||||
constructor(http: HttpClient) {
|
||||
super(http, (action: string = null) => { return `MD2HeroProfile${(action ? `/${action}` : '')}` });
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user