move eventlog api into /api/v1/cloudron

This commit is contained in:
Girish Ramakrishnan
2017-04-18 14:53:08 -07:00
parent cf69a8c4ce
commit 5f888341ea
4 changed files with 10 additions and 14 deletions

View File

@@ -527,7 +527,7 @@ angular.module('Application').service('Client', ['$http', 'md5', 'Notification',
}
};
get('/api/v1/eventlog', config).success(function (data, status) {
get('/api/v1/cloudron/eventlog', config).success(function (data, status) {
if (status !== 200 || typeof data !== 'object') return callback(new ClientError(status, data));
callback(null, data.eventlogs);