Skip to content

Commit

Permalink
fix: mark as deprecated methods
Browse files Browse the repository at this point in the history
  • Loading branch information
paulgerold committed Dec 3, 2024
1 parent ec978fa commit 43ed83d
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,23 @@ import Resource from '../../Resource.js';
export default class UserActionHistoryConfiguration extends Resource {
static baseUrl = `/rest/organizations/${API.orgPlaceholder}/machinelearning/configuration/useractionhistory`;

/**
* @deprecated
*/
create() {
return this.api.post<void>(UserActionHistoryConfiguration.baseUrl);
}

/**
* @deprecated
*/
delete() {
return this.api.delete<void>(UserActionHistoryConfiguration.baseUrl);
}

/**
* @deprecated
*/
get() {
return this.api.get<boolean>(UserActionHistoryConfiguration.baseUrl);
}
Expand Down

0 comments on commit 43ed83d

Please sign in to comment.