refactor: use constant for api url
This commit is contained in:
parent
329739b103
commit
c6d886b68b
2 changed files with 18 additions and 1 deletions
|
@ -2,12 +2,13 @@ import { Injectable } from '@angular/core';
|
|||
import { HttpClient } from '@angular/common/http';
|
||||
import { Observable } from 'rxjs';
|
||||
import { DiceDto, DiceResult } from './dice.model';
|
||||
import {environment} from "@environments/environment";
|
||||
|
||||
@Injectable({
|
||||
providedIn: 'root',
|
||||
})
|
||||
export class DiceService {
|
||||
private apiUrl = '/backend/dice';
|
||||
private apiUrl = `${environment.apiUrl}/dice`;
|
||||
|
||||
constructor(private http: HttpClient) {}
|
||||
|
||||
|
|
Reference in a new issue