├── .gitignore ├── LICENSE ├── README.md ├── config.json └── src ├── actions └── index.js ├── components ├── add-app.js ├── app-branding.js ├── app-date.js ├── app-detail.js ├── app-field-select.js ├── app-field.js ├── app-list.js ├── app-scope.js ├── app-team-editor.js ├── app-team.js ├── app-textarea-field.js ├── app.js ├── empty-app-detail.js └── redirect-uris.js ├── css ├── app-detail.css ├── app-field.css ├── app-list.css ├── app-team.css └── app-title.css ├── index.js ├── reducers ├── activeApp.js ├── appList.js ├── index.js └── optionsList.js ├── urls.js └── utils.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-developer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-developer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Developer 2 | 3 | > Omniport service frontend 4 | -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-developer/HEAD/config.json -------------------------------------------------------------------------------- /src/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-developer/HEAD/src/actions/index.js -------------------------------------------------------------------------------- /src/components/add-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-developer/HEAD/src/components/add-app.js -------------------------------------------------------------------------------- /src/components/app-branding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-developer/HEAD/src/components/app-branding.js -------------------------------------------------------------------------------- /src/components/app-date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-developer/HEAD/src/components/app-date.js -------------------------------------------------------------------------------- /src/components/app-detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-developer/HEAD/src/components/app-detail.js -------------------------------------------------------------------------------- /src/components/app-field-select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-developer/HEAD/src/components/app-field-select.js -------------------------------------------------------------------------------- /src/components/app-field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-developer/HEAD/src/components/app-field.js -------------------------------------------------------------------------------- /src/components/app-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-developer/HEAD/src/components/app-list.js -------------------------------------------------------------------------------- /src/components/app-scope.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-developer/HEAD/src/components/app-scope.js -------------------------------------------------------------------------------- /src/components/app-team-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-developer/HEAD/src/components/app-team-editor.js -------------------------------------------------------------------------------- /src/components/app-team.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-developer/HEAD/src/components/app-team.js -------------------------------------------------------------------------------- /src/components/app-textarea-field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-developer/HEAD/src/components/app-textarea-field.js -------------------------------------------------------------------------------- /src/components/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-developer/HEAD/src/components/app.js -------------------------------------------------------------------------------- /src/components/empty-app-detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-developer/HEAD/src/components/empty-app-detail.js -------------------------------------------------------------------------------- /src/components/redirect-uris.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-developer/HEAD/src/components/redirect-uris.js -------------------------------------------------------------------------------- /src/css/app-detail.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-developer/HEAD/src/css/app-detail.css -------------------------------------------------------------------------------- /src/css/app-field.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-developer/HEAD/src/css/app-field.css -------------------------------------------------------------------------------- /src/css/app-list.css: -------------------------------------------------------------------------------- 1 | .app-list-container{ 2 | margin-bottom: 1.5em; 3 | } -------------------------------------------------------------------------------- /src/css/app-team.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-developer/HEAD/src/css/app-team.css -------------------------------------------------------------------------------- /src/css/app-title.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-developer/HEAD/src/css/app-title.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-developer/HEAD/src/index.js -------------------------------------------------------------------------------- /src/reducers/activeApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-developer/HEAD/src/reducers/activeApp.js -------------------------------------------------------------------------------- /src/reducers/appList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-developer/HEAD/src/reducers/appList.js -------------------------------------------------------------------------------- /src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-developer/HEAD/src/reducers/index.js -------------------------------------------------------------------------------- /src/reducers/optionsList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-developer/HEAD/src/reducers/optionsList.js -------------------------------------------------------------------------------- /src/urls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-developer/HEAD/src/urls.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-developer/HEAD/src/utils.js --------------------------------------------------------------------------------