fix: removed changelog endpoint (#6146)

This commit is contained in:
guru_sainath 2024-12-04 13:42:15 +05:30 committed by GitHub
parent f02a2b04a5
commit bb8a156bdd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 5 additions and 50 deletions

View file

@ -25,12 +25,4 @@ export class InstanceService extends APIService {
throw error;
});
}
async getInstanceChangeLog(): Promise<TPage> {
return this.get("/api/instances/changelog/")
.then((response) => response.data)
.catch((error) => {
throw error;
});
}
}