Skip to content

Commit

Permalink
Updated e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
akhromets committed May 8, 2024
1 parent bbe64d6 commit 7d5f372
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .snapshot/all/services.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,21 @@ export class CategoryService extends BaseHttpService {
}
}

@Injectable({
providedIn: 'root'
})
export class FeedbackService extends BaseHttpService {
constructor(http: HttpClient) {
super(getBasePath('gengen', '/api/feedback'), http);
}

public postFeedback(): Observable<void> {
return this.post<void>(
``,
);
}
}

@Injectable({
providedIn: 'root'
})
Expand Down

0 comments on commit 7d5f372

Please sign in to comment.