mirror of
https://github.com/ansible/awx.git
synced 2026-01-09 23:12:08 -03:30
Merge ui and ui_next in one dir See: https://github.com/ansible/awx/issues/10676 Update django .po files Update django .po files Run `awx-manage makemessages`.
11 lines
158 B
JavaScript
11 lines
158 B
JavaScript
import Base from '../Base';
|
|
|
|
class Auth extends Base {
|
|
constructor(http) {
|
|
super(http);
|
|
this.baseUrl = '/api/v2/auth/';
|
|
}
|
|
}
|
|
|
|
export default Auth;
|