├── .gitignore ├── README.md ├── package.json ├── public ├── config.json ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── AccountDropdown.js ├── Accounts.js ├── ActionPlans.js ├── ActionTriggers.js ├── Actions.js ├── App.css ├── App.js ├── Attributes.js ├── CDRs.js ├── ChargeTester.js ├── Chargers.js ├── Config.js ├── DestinationRates.js ├── Destinations.js ├── EventReader.js ├── ExecuteJSON.js ├── ExportedCDRs.js ├── Filters.js ├── GetCost.js ├── RatingPlans.js ├── RatingProfile.js ├── Resources.js ├── RouteProfiles.js ├── RouteS.js ├── SessionS.js ├── Stats.js ├── TariffPlans.js ├── Thresholds.js ├── Timing.js ├── UpcomingActionPlans.js ├── index.css ├── index.js ├── logo.svg ├── reportWebVitals.js └── setupTests.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/package.json -------------------------------------------------------------------------------- /public/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/public/config.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/AccountDropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/src/AccountDropdown.js -------------------------------------------------------------------------------- /src/Accounts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/src/Accounts.js -------------------------------------------------------------------------------- /src/ActionPlans.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/src/ActionPlans.js -------------------------------------------------------------------------------- /src/ActionTriggers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/src/ActionTriggers.js -------------------------------------------------------------------------------- /src/Actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/src/Actions.js -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/src/App.js -------------------------------------------------------------------------------- /src/Attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/src/Attributes.js -------------------------------------------------------------------------------- /src/CDRs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/src/CDRs.js -------------------------------------------------------------------------------- /src/ChargeTester.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/src/ChargeTester.js -------------------------------------------------------------------------------- /src/Chargers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/src/Chargers.js -------------------------------------------------------------------------------- /src/Config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/src/Config.js -------------------------------------------------------------------------------- /src/DestinationRates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/src/DestinationRates.js -------------------------------------------------------------------------------- /src/Destinations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/src/Destinations.js -------------------------------------------------------------------------------- /src/EventReader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/src/EventReader.js -------------------------------------------------------------------------------- /src/ExecuteJSON.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/src/ExecuteJSON.js -------------------------------------------------------------------------------- /src/ExportedCDRs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/src/ExportedCDRs.js -------------------------------------------------------------------------------- /src/Filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/src/Filters.js -------------------------------------------------------------------------------- /src/GetCost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/src/GetCost.js -------------------------------------------------------------------------------- /src/RatingPlans.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/src/RatingPlans.js -------------------------------------------------------------------------------- /src/RatingProfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/src/RatingProfile.js -------------------------------------------------------------------------------- /src/Resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/src/Resources.js -------------------------------------------------------------------------------- /src/RouteProfiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/src/RouteProfiles.js -------------------------------------------------------------------------------- /src/RouteS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/src/RouteS.js -------------------------------------------------------------------------------- /src/SessionS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/src/SessionS.js -------------------------------------------------------------------------------- /src/Stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/src/Stats.js -------------------------------------------------------------------------------- /src/TariffPlans.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/src/TariffPlans.js -------------------------------------------------------------------------------- /src/Thresholds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/src/Thresholds.js -------------------------------------------------------------------------------- /src/Timing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/src/Timing.js -------------------------------------------------------------------------------- /src/UpcomingActionPlans.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/src/UpcomingActionPlans.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omnitouch/CGrateS_UI/HEAD/src/setupTests.js --------------------------------------------------------------------------------