mirror of
https://github.com/ZwareBear/awx.git
synced 2026-03-25 10:13:37 -05:00
83 lines
2.4 KiB
JavaScript
83 lines
2.4 KiB
JavaScript
/*************************************************
|
|
* Copyright (c) 2015 Ansible, Inc.
|
|
*
|
|
* All Rights Reserved
|
|
*************************************************/
|
|
|
|
import './forms';
|
|
import './lists';
|
|
|
|
import AboutAnsible from "./helpers/AboutAnsible";
|
|
import Access from "./helpers/Access";
|
|
import Children from "./helpers/Children";
|
|
import Credentials from "./helpers/Credentials";
|
|
import EventViewer from "./helpers/EventViewer";
|
|
import Events from "./helpers/Events";
|
|
import Groups from "./helpers/Groups";
|
|
import HostEventsViewer from "./helpers/HostEventsViewer";
|
|
import Hosts from "./helpers/Hosts";
|
|
import JobDetail from "./helpers/JobDetail";
|
|
import JobSubmission from "./helpers/JobSubmission";
|
|
import JobTemplates from "./helpers/JobTemplates";
|
|
import Jobs from "./helpers/Jobs";
|
|
import License from "./helpers/License";
|
|
import LoadConfig from "./helpers/LoadConfig";
|
|
import LogViewer from "./helpers/LogViewer";
|
|
import Lookup from "./helpers/Lookup";
|
|
import PaginationHelpers from "./helpers/PaginationHelpers";
|
|
import Parse from "./helpers/Parse";
|
|
import ProjectPath from "./helpers/ProjectPath";
|
|
import Projects from "./helpers/Projects";
|
|
import Schedules from "./helpers/Schedules";
|
|
import Selection from "./helpers/Selection";
|
|
import SocketHelper from "./helpers/SocketHelper";
|
|
import Users from "./helpers/Users";
|
|
import Variables from "./helpers/Variables";
|
|
import ApiDefaults from "./helpers/api-defaults";
|
|
import inventory from "./helpers/inventory";
|
|
import MD5 from "./helpers/md5";
|
|
import RefreshRelated from "./helpers/refresh-related";
|
|
import Refresh from "./helpers/refresh";
|
|
import RelatedSearch from "./helpers/related-search";
|
|
import Search from "./helpers/search";
|
|
import Teams from "./helpers/teams";
|
|
import AdhocHelper from "./helpers/Adhoc";
|
|
|
|
export
|
|
{ AboutAnsible,
|
|
Access,
|
|
Children,
|
|
Credentials,
|
|
EventViewer,
|
|
Events,
|
|
Groups,
|
|
HostEventsViewer,
|
|
Hosts,
|
|
JobDetail,
|
|
JobSubmission,
|
|
JobTemplates,
|
|
Jobs,
|
|
License,
|
|
LoadConfig,
|
|
LogViewer,
|
|
Lookup,
|
|
PaginationHelpers,
|
|
Parse,
|
|
ProjectPath,
|
|
Projects,
|
|
Schedules,
|
|
Selection,
|
|
SocketHelper,
|
|
Users,
|
|
Variables,
|
|
ApiDefaults,
|
|
inventory,
|
|
MD5,
|
|
RefreshRelated,
|
|
Refresh,
|
|
RelatedSearch,
|
|
Search,
|
|
Teams,
|
|
AdhocHelper
|
|
};
|