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 bdec82b commit fa37446
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
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
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit fa37446

Please sign in to comment.