mirror of
https://github.com/ansible/awx.git
synced 2026-01-14 03:10:42 -03:30
11 lines
184 B
JavaScript
11 lines
184 B
JavaScript
import Base from '../Base';
|
|
|
|
class Notifications extends Base {
|
|
constructor(http) {
|
|
super(http);
|
|
this.baseUrl = 'api/v2/notifications/';
|
|
}
|
|
}
|
|
|
|
export default Notifications;
|