1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-23 14:57:46 +01:00

fixup! chore: Rendi getAttribute pubblico

This commit is contained in:
Maicol Battistini 2021-10-08 12:33:05 +02:00
parent 1043715dc8
commit a3f4ec27bb
No known key found for this signature in database
GPG Key ID: 4FDB0F87CDB1D34A

View File

@ -9,6 +9,10 @@ export default class Model extends BaseModel {
return this.get();
}
getAttribute(attributeName: string): any {
return super.getAttribute(attributeName);
}
getJsonApiBaseUrl(): string {
return '/api';
}