mno-enterprise-frontend 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE +1 -0
- data/Rakefile +12 -0
- data/app/assets/images/favicon.ico +0 -0
- data/app/assets/images/mno_enterprise/impac/close-widget-pink.png +0 -0
- data/app/assets/images/mno_enterprise/impac/close-widget.png +0 -0
- data/app/assets/images/mno_enterprise/loader-32x32-bg-inverse.gif +0 -0
- data/app/assets/images/mno_enterprise/loader-32x32-bg-main.gif +0 -0
- data/app/assets/images/mno_enterprise/maestrano/logo-whitebg.png +0 -0
- data/app/assets/javascripts/mno_enterprise/angular/app.js.coffee.erb +173 -0
- data/app/assets/javascripts/mno_enterprise/angular/controllers/maestrano-controllers.js.coffee +4 -0
- data/app/assets/javascripts/mno_enterprise/angular/controllers/modals/modals-ctrl.js.coffee +62 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/dashboard-account.js.coffee +157 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/dashboard-app-deletion-request.js.coffee +62 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/dashboard-apps-list.js.coffee +127 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/dashboard-components.js.coffee +25 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/dashboard-marketplace-app.js.coffee +77 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/dashboard-marketplace.js.coffee +51 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/dashboard-menu.js.coffee +174 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/arrears.js.coffee +70 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/billing.js.coffee +48 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/credit-card.js.coffee +142 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/index.js.coffee +61 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/invoices.js.coffee +42 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/members.js.coffee +280 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/settings.js.coffee +91 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/team-list.js.coffee +179 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/teams.js.coffee +268 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/file-model.js.coffee +33 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/maestrano-components.js.coffee +22 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-autostop-app.js.coffee +123 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-compile.js.coffee +18 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-currency-widget.js.coffee +43 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-current-currency.js.coffee +22 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-editable.js.coffee +68 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-flash-msg.js.coffee +40 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-helptext.js.coffee +38 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-loading-lounge.js.coffee +184 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-match.js.coffee +14 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-message-modal.js.coffee +56 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-notification-widget.js.coffee +192 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-partner-code-popup.js.coffee +74 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-partner-contact.js.coffee +59 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-password-strength.js.coffee +154 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-password.js.coffee +40 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-price-converter.js.coffee +49 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-scroll-to.js.coffee +14 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-typeahead.js.coffee +89 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/user-setup/components.js.coffee +7 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/user-setup/index.js.coffee +256 -0
- data/app/assets/javascripts/mno_enterprise/angular/filters/maestrano-app-by-category.js.coffee +5 -0
- data/app/assets/javascripts/mno_enterprise/angular/filters/maestrano-currency.js.coffee +30 -0
- data/app/assets/javascripts/mno_enterprise/angular/filters/maestrano-filters.js.coffee +7 -0
- data/app/assets/javascripts/mno_enterprise/angular/filters/maestrano-replace-underscore-with-space.js.coffee +4 -0
- data/app/assets/javascripts/mno_enterprise/angular/filters/maestrano-titleize.js.coffee +7 -0
- data/app/assets/javascripts/mno_enterprise/angular/filters/maestrano-truncate.js.coffee +24 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/dashboard/maestrano-app-instance.js.coffee +15 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/dashboard/maestrano-apps-document.js.coffee +83 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/dashboard/maestrano-user.js.coffee +27 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/dashboard/organization-svc.js.coffee +318 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/dashboard/team-svc.js.coffee +180 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/dashboard/tickets-svc.js.coffee +109 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/impac-config.svc.js.coffee +35 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-apps-list-helper.js.coffee +337 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-assets.js.coffee.erb +21 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-current-currency.js.coffee +7 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-current-user-svc.js.coffee +99 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-exchange-rates.js.coffee +102 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-message-svc.js.coffee +71 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-miscellaneous.js.coffee.erb +46 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-modal.js.coffee +67 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-msg-bus.js.coffee +50 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-services.js.coffee +21 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-shopping-cart.js.coffee +361 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-utilities.js.coffee +61 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/marketplace-svc.js.coffee +59 -0
- data/app/assets/javascripts/mno_enterprise/application.js +17 -0
- data/app/assets/javascripts/mno_enterprise/application_lib.js +14 -0
- data/app/assets/javascripts/mno_enterprise/lib/angular-really-click.js +17 -0
- data/app/assets/javascripts/mno_enterprise/lib/sortable.js +315 -0
- data/app/assets/javascripts/mno_enterprise/lib/ui-bootstrap-tpls-0.13.4.js +5836 -0
- data/app/assets/javascripts/mno_enterprise/lib/xeditable.js +1588 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap.js +12 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/affix.js +162 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/alert.js +94 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/button.js +116 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/carousel.js +237 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/collapse.js +211 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/dropdown.js +161 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/modal.js +324 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/popover.js +113 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/scrollspy.js +175 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/tab.js +153 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/tooltip.js +472 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/transition.js +59 -0
- data/app/assets/javascripts/ng-performance/ngPerformance.html +109 -0
- data/app/assets/javascripts/ng-performance/ngPerformance.js +211 -0
- data/app/assets/stylesheets/mno_enterprise/application.css +13 -0
- data/app/assets/stylesheets/mno_enterprise/custom/accordion.less +90 -0
- data/app/assets/stylesheets/mno_enterprise/custom/alert.less +30 -0
- data/app/assets/stylesheets/mno_enterprise/custom/angular-animate.less +42 -0
- data/app/assets/stylesheets/mno_enterprise/custom/angular-material.less +56 -0
- data/app/assets/stylesheets/mno_enterprise/custom/bootstrap-on-juice.less +22 -0
- data/app/assets/stylesheets/mno_enterprise/custom/button.less +84 -0
- data/app/assets/stylesheets/mno_enterprise/custom/footer.less +44 -0
- data/app/assets/stylesheets/mno_enterprise/custom/form.less +191 -0
- data/app/assets/stylesheets/mno_enterprise/custom/header.less +281 -0
- data/app/assets/stylesheets/mno_enterprise/custom/impac-variables-override.less +65 -0
- data/app/assets/stylesheets/mno_enterprise/custom/modal.less +183 -0
- data/app/assets/stylesheets/mno_enterprise/custom/utilities.less +729 -0
- data/app/assets/stylesheets/mno_enterprise/custom/utility/app-presentation.less +77 -0
- data/app/assets/stylesheets/mno_enterprise/custom/utility/banners.less +145 -0
- data/app/assets/stylesheets/mno_enterprise/custom/utility/carousel.less +68 -0
- data/app/assets/stylesheets/mno_enterprise/custom/utility/helptext.less +40 -0
- data/app/assets/stylesheets/mno_enterprise/custom/utility/miscellaneous.less +134 -0
- data/app/assets/stylesheets/mno_enterprise/custom/utility/progress-bar.less +55 -0
- data/app/assets/stylesheets/mno_enterprise/custom/utility/step.less +101 -0
- data/app/assets/stylesheets/mno_enterprise/custom/utility/tabset.less +87 -0
- data/app/assets/stylesheets/mno_enterprise/custom/utility/testimonial.less +118 -0
- data/app/assets/stylesheets/mno_enterprise/custom/utility/text.less +23 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/apps.less +243 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/myspace.less +477 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/pages/confirmation_lounge.less +31 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/pages/home.less +57 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/pages/oauth-config-page.less +6 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/registration.less +84 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/star.less +18 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/templates/dashboard/bootstrap-wizard.less +63 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/templates/dashboard/dashboard-marketplace.less +187 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/templates/dashboard/dashboard-organization.less +149 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/templates/dashboard/dashboard-teams.less +119 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/templates/dashboard/support.less +42 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/templates/dashboard/tickets.less +80 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/templates/mno-editable.less +60 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/templates/notification-widget.less +49 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/templates/password-strength.less +28 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/templates/shopping-cart.less +333 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/templates/star-wizard.less +49 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/user-setup.less +10 -0
- data/app/assets/stylesheets/mno_enterprise/custom/xeditable.less +40 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/font-awesome-regular.less +13 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/font-awesome-sprockets.less +13 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/font-awesome.less +16 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/fonts/FontAwesome.otf +0 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/fonts/fontawesome-webfont.eot +0 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/fonts/fontawesome-webfont.svg +640 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/fonts/fontawesome-webfont.ttf +0 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/fonts/fontawesome-webfont.woff +0 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/fonts/fontawesome-webfont.woff2 +0 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/animated.less +34 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/bordered-pulled.less +25 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/core.less +12 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/extras.less +2 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/fixed-width.less +6 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/icons.less +677 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/larger.less +13 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/list.less +19 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/mixins.less +26 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/rotated-flipped.less +20 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/stacked.less +20 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/variables.less +687 -0
- data/app/assets/stylesheets/mno_enterprise/main.less +132 -0
- data/app/assets/stylesheets/mno_enterprise/mixins.less +75 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/alerts.less +73 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/badges.less +65 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/bootstrap.less +50 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/breadcrumbs.less +26 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/button-groups.less +243 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/buttons.less +160 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/carousel.less +269 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/close.less +34 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/code.less +69 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/component-animations.less +34 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/dropdowns.less +214 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/forms.less +566 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/glyphicons.less +301 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/grid.less +84 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/input-groups.less +166 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/jumbotron.less +50 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/labels.less +64 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/list-group.less +124 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/media.less +61 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins.less +39 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/alerts.less +14 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/background-variant.less +8 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/border-radius.less +18 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/buttons.less +52 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/center-block.less +7 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/clearfix.less +22 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/forms.less +85 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/gradients.less +59 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/grid-framework.less +91 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/grid.less +122 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/hide-text.less +21 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/image.less +33 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/labels.less +12 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/list-group.less +29 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/nav-divider.less +10 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/nav-vertical-align.less +9 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/opacity.less +8 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/pagination.less +23 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/panels.less +24 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/progress-bar.less +10 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/reset-filter.less +8 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/resize.less +6 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/responsive-visibility.less +15 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/size.less +10 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/tab-focus.less +9 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/table-row.less +28 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/text-emphasis.less +8 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/text-overflow.less +8 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/vendor-prefixes.less +227 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/modals.less +148 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/navbar.less +661 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/navs.less +244 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/normalize.less +427 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/pager.less +54 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/pagination.less +88 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/panels.less +265 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/popovers.less +135 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/print.less +107 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/progress-bars.less +87 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/responsive-embed.less +35 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/responsive-utilities.less +194 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/scaffolding.less +150 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/tables.less +234 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/theme.less +273 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/thumbnails.less +36 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/tooltip.less +103 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/type.less +302 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/utilities.less +56 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/variables.less +857 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/wells.less +29 -0
- data/app/assets/stylesheets/mno_enterprise/variables.less +226 -0
- data/app/assets/templates/mno_enterprise/dashboard/account.html +131 -0
- data/app/assets/templates/mno_enterprise/dashboard/app_deletion.html +36 -0
- data/app/assets/templates/mno_enterprise/dashboard/apps_list.html +103 -0
- data/app/assets/templates/mno_enterprise/dashboard/horizontal_menu.html +85 -0
- data/app/assets/templates/mno_enterprise/dashboard/marketplace/index.html +60 -0
- data/app/assets/templates/mno_enterprise/dashboard/marketplace/show.html +133 -0
- data/app/assets/templates/mno_enterprise/dashboard/menu.html +161 -0
- data/app/assets/templates/mno_enterprise/dashboard/organization/arrears.html +37 -0
- data/app/assets/templates/mno_enterprise/dashboard/organization/billing.html +37 -0
- data/app/assets/templates/mno_enterprise/dashboard/organization/credit-card.html +156 -0
- data/app/assets/templates/mno_enterprise/dashboard/organization/index.full.html +181 -0
- data/app/assets/templates/mno_enterprise/dashboard/organization/index.html +173 -0
- data/app/assets/templates/mno_enterprise/dashboard/organization/invoices.html +27 -0
- data/app/assets/templates/mno_enterprise/dashboard/organization/members.html +288 -0
- data/app/assets/templates/mno_enterprise/dashboard/organization/settings.html +55 -0
- data/app/assets/templates/mno_enterprise/dashboard/teams/index.html +175 -0
- data/app/assets/templates/mno_enterprise/dashboard/teams/member-add-modal.html +60 -0
- data/app/assets/templates/mno_enterprise/dashboard/teams/member-removal-modal.html +35 -0
- data/app/assets/templates/mno_enterprise/dashboard/teams/team-add-modal.html +35 -0
- data/app/assets/templates/mno_enterprise/dashboard/teams/team-delete-modal.html +35 -0
- data/app/assets/templates/mno_enterprise/dashboard/teams/team-list.html +107 -0
- data/app/assets/templates/mno_enterprise/default_template.html +20 -0
- data/app/assets/templates/mno_enterprise/maestrano-components/autostop_app.html +42 -0
- data/app/assets/templates/mno_enterprise/maestrano-components/currency_widget.html +1 -0
- data/app/assets/templates/mno_enterprise/maestrano-components/editable.html +28 -0
- data/app/assets/templates/mno_enterprise/maestrano-components/loading_lounge.html +63 -0
- data/app/assets/templates/mno_enterprise/maestrano-components/modal-messages/congratulations.html +8 -0
- data/app/assets/templates/mno_enterprise/maestrano-components/modal-messages/default.html +1 -0
- data/app/assets/templates/mno_enterprise/maestrano-components/modal-messages/information.html +8 -0
- data/app/assets/templates/mno_enterprise/maestrano-components/notification-widget.html +31 -0
- data/app/assets/templates/mno_enterprise/maestrano-components/password.html +55 -0
- data/app/assets/templates/mno_enterprise/maestrano-components/star_wizard.html +254 -0
- data/app/assets/templates/mno_enterprise/maestrano-components/upload_spreadsheet.html +191 -0
- data/app/assets/templates/mno_enterprise/modals/new-organization-reseller-req.html +35 -0
- data/app/assets/templates/mno_enterprise/modals/new-organization.html +35 -0
- data/app/assets/templates/mno_enterprise/user-setup/index.html +312 -0
- data/app/controllers/mno_enterprise/invoices_controller.rb +22 -0
- data/app/controllers/mno_enterprise/pages_controller.rb +9 -0
- data/app/controllers/mno_enterprise/user_setup_controller.rb +11 -0
- data/app/views/layouts/mno_enterprise/_application_js.html.haml +17 -0
- data/app/views/layouts/mno_enterprise/_common_cdn_lib_js.html.haml +19 -0
- data/app/views/layouts/mno_enterprise/_footer_files.html.haml +5 -0
- data/app/views/layouts/mno_enterprise/_header_files.html.haml +31 -0
- data/app/views/layouts/mno_enterprise/_impersonate_header.html.haml +7 -0
- data/app/views/layouts/mno_enterprise/_public_page_header.html.haml +2 -0
- data/app/views/layouts/mno_enterprise/application.html.haml +18 -0
- data/app/views/layouts/mno_enterprise/application_dashboard.html.haml +22 -0
- data/app/views/layouts/mno_enterprise/third_party/_google_tag_container.html.haml +10 -0
- data/app/views/mno_enterprise/pages/app_access_unauthorized.html.haml +19 -0
- data/app/views/mno_enterprise/pages/app_logout.html.haml +18 -0
- data/app/views/mno_enterprise/pages/billing_details_required.html.haml +19 -0
- data/app/views/mno_enterprise/pages/loading.html.haml +3 -0
- data/app/views/mno_enterprise/pages/myspace.html.haml +6 -0
- data/app/views/mno_enterprise/provision/_provision_apps.html.haml +43 -0
- data/app/views/mno_enterprise/provision/_select_organization.html.haml +17 -0
- data/app/views/mno_enterprise/provision/new.html.haml +4 -0
- data/app/views/mno_enterprise/user_setup/index.html.haml +2 -0
- data/config/initializers/ng-annotate.rb +3 -0
- data/config/initializers/ng-performance.rb +3 -0
- data/config/routes.rb +19 -0
- data/lib/assets/javascripts/impac-angular.js +8719 -0
- data/lib/assets/stylesheets/impac-angular.less +2352 -0
- data/lib/mno-enterprise-frontend.rb +1 -0
- data/lib/mno_enterprise/frontend.rb +13 -0
- data/lib/mno_enterprise/frontend/assets_util.rb +47 -0
- data/lib/mno_enterprise/frontend/concerns/README.md +6 -0
- data/lib/mno_enterprise/frontend/concerns/controllers/pages_controller.rb +25 -0
- data/lib/mno_enterprise/frontend/engine.rb +13 -0
- data/spec/controllers/mno_enterprise/auth/confirmations_controller_spec.rb +84 -0
- data/spec/controllers/mno_enterprise/invoices_controller_spec.rb +34 -0
- data/spec/controllers/mno_enterprise/pages_controller_spec.rb +42 -0
- data/spec/controllers/mno_enterprise/user_setup_controller_spec.rb +33 -0
- data/spec/controllers/mno_enterprise/webhook/o_auth_controller_spec.rb +76 -0
- data/spec/rails_helper.rb +92 -0
- data/spec/routing/mno_enterprise/invoices_controller_routing_spec.rb +11 -0
- data/spec/routing/mno_enterprise/pages_controller_routing_spec.rb +18 -0
- data/spec/routing/mno_enterprise/user_setup_controller_routing_spec.rb +11 -0
- data/spec/spec_helper.rb +78 -0
- metadata +464 -0
@@ -0,0 +1,11 @@
|
|
1
|
+
require "rails_helper"
|
2
|
+
|
3
|
+
module MnoEnterprise
|
4
|
+
RSpec.describe InvoicesController, type: :routing do
|
5
|
+
routes { MnoEnterprise::Engine.routes }
|
6
|
+
|
7
|
+
it "routes to #show" do
|
8
|
+
expect(get("/invoices/201504-NU4")).to route_to("mno_enterprise/invoices#show", id: '201504-NU4')
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
require "rails_helper"
|
2
|
+
|
3
|
+
module MnoEnterprise
|
4
|
+
RSpec.describe PagesController, type: :routing do
|
5
|
+
routes { MnoEnterprise::Engine.routes }
|
6
|
+
|
7
|
+
describe "myspace" do
|
8
|
+
it "routes to myspace" do
|
9
|
+
expect(get("/myspace")).to route_to("mno_enterprise/pages#myspace")
|
10
|
+
end
|
11
|
+
|
12
|
+
it "routes to myspace_billing" do
|
13
|
+
expect(get("/myspace#/billing")).to route_to("mno_enterprise/pages#myspace")
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
require "rails_helper"
|
2
|
+
|
3
|
+
module MnoEnterprise
|
4
|
+
RSpec.describe UserSetupController, type: :routing do
|
5
|
+
routes { MnoEnterprise::Engine.routes }
|
6
|
+
|
7
|
+
it "routes to #index" do
|
8
|
+
expect(get("/user_setup")).to route_to("mno_enterprise/user_setup#index")
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,78 @@
|
|
1
|
+
# This file was generated by the `rails generate rspec:install` command. Conventionally, all
|
2
|
+
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
|
3
|
+
# The generated `.rspec` file contains `--require spec_helper` which will cause this
|
4
|
+
# file to always be loaded, without a need to explicitly require it in any files.
|
5
|
+
#
|
6
|
+
# Given that it is always loaded, you are encouraged to keep this file as
|
7
|
+
# light-weight as possible. Requiring heavyweight dependencies from this file
|
8
|
+
# will add to the boot time of your test suite on EVERY test run, even for an
|
9
|
+
# individual file that may not need all of that loaded. Instead, make a
|
10
|
+
# separate helper file that requires this one and then use it only in the specs
|
11
|
+
# that actually need it.
|
12
|
+
#
|
13
|
+
# The `.rspec` file also contains a few flags that are not defaults but that
|
14
|
+
# users commonly want.
|
15
|
+
#
|
16
|
+
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
17
|
+
RSpec.configure do |config|
|
18
|
+
# The settings below are suggested to provide a good initial experience
|
19
|
+
# with RSpec, but feel free to customize to your heart's content.
|
20
|
+
=begin
|
21
|
+
# These two settings work together to allow you to limit a spec run
|
22
|
+
# to individual examples or groups you care about by tagging them with
|
23
|
+
# `:focus` metadata. When nothing is tagged with `:focus`, all examples
|
24
|
+
# get run.
|
25
|
+
config.filter_run :focus
|
26
|
+
config.run_all_when_everything_filtered = true
|
27
|
+
|
28
|
+
# Many RSpec users commonly either run the entire suite or an individual
|
29
|
+
# file, and it's useful to allow more verbose output when running an
|
30
|
+
# individual spec file.
|
31
|
+
if config.files_to_run.one?
|
32
|
+
# Use the documentation formatter for detailed output,
|
33
|
+
# unless a formatter has already been configured
|
34
|
+
# (e.g. via a command-line flag).
|
35
|
+
config.default_formatter = 'doc'
|
36
|
+
end
|
37
|
+
|
38
|
+
# Print the 10 slowest examples and example groups at the
|
39
|
+
# end of the spec run, to help surface which specs are running
|
40
|
+
# particularly slow.
|
41
|
+
config.profile_examples = 10
|
42
|
+
|
43
|
+
# Run specs in random order to surface order dependencies. If you find an
|
44
|
+
# order dependency and want to debug it, you can fix the order by providing
|
45
|
+
# the seed, which is printed after each run.
|
46
|
+
# --seed 1234
|
47
|
+
config.order = :random
|
48
|
+
|
49
|
+
# Seed global randomization in this process using the `--seed` CLI option.
|
50
|
+
# Setting this allows you to use `--seed` to deterministically reproduce
|
51
|
+
# test failures related to randomization by passing the same `--seed` value
|
52
|
+
# as the one that triggered the failure.
|
53
|
+
Kernel.srand config.seed
|
54
|
+
|
55
|
+
# rspec-expectations config goes here. You can use an alternate
|
56
|
+
# assertion/expectation library such as wrong or the stdlib/minitest
|
57
|
+
# assertions if you prefer.
|
58
|
+
config.expect_with :rspec do |expectations|
|
59
|
+
# Enable only the newer, non-monkey-patching expect syntax.
|
60
|
+
# For more details, see:
|
61
|
+
# - http://myronmars.to/n/dev-blog/2012/06/rspecs-new-expectation-syntax
|
62
|
+
expectations.syntax = :expect
|
63
|
+
end
|
64
|
+
|
65
|
+
# rspec-mocks config goes here. You can use an alternate test double
|
66
|
+
# library (such as bogus or mocha) by changing the `mock_with` option here.
|
67
|
+
config.mock_with :rspec do |mocks|
|
68
|
+
# Enable only the newer, non-monkey-patching expect syntax.
|
69
|
+
# For more details, see:
|
70
|
+
# - http://teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
|
71
|
+
mocks.syntax = :expect
|
72
|
+
|
73
|
+
# Prevents you from mocking or stubbing a method that does not exist on
|
74
|
+
# a real object. This is generally recommended.
|
75
|
+
mocks.verify_partial_doubles = true
|
76
|
+
end
|
77
|
+
=end
|
78
|
+
end
|
metadata
ADDED
@@ -0,0 +1,464 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: mno-enterprise-frontend
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 2.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Arnaud Lachaume
|
8
|
+
- Olivier Brisse
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2016-04-05 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: mno-enterprise-core
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
requirements:
|
18
|
+
- - '='
|
19
|
+
- !ruby/object:Gem::Version
|
20
|
+
version: 2.0.0
|
21
|
+
type: :runtime
|
22
|
+
prerelease: false
|
23
|
+
version_requirements: !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - '='
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
version: 2.0.0
|
28
|
+
- !ruby/object:Gem::Dependency
|
29
|
+
name: mno-enterprise-api
|
30
|
+
requirement: !ruby/object:Gem::Requirement
|
31
|
+
requirements:
|
32
|
+
- - '='
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
version: 2.0.0
|
35
|
+
type: :runtime
|
36
|
+
prerelease: false
|
37
|
+
version_requirements: !ruby/object:Gem::Requirement
|
38
|
+
requirements:
|
39
|
+
- - '='
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: 2.0.0
|
42
|
+
- !ruby/object:Gem::Dependency
|
43
|
+
name: less-rails
|
44
|
+
requirement: !ruby/object:Gem::Requirement
|
45
|
+
requirements:
|
46
|
+
- - "~>"
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: '2.7'
|
49
|
+
type: :runtime
|
50
|
+
prerelease: false
|
51
|
+
version_requirements: !ruby/object:Gem::Requirement
|
52
|
+
requirements:
|
53
|
+
- - "~>"
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: '2.7'
|
56
|
+
- !ruby/object:Gem::Dependency
|
57
|
+
name: therubyracer
|
58
|
+
requirement: !ruby/object:Gem::Requirement
|
59
|
+
requirements:
|
60
|
+
- - "~>"
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: '0.12'
|
63
|
+
type: :runtime
|
64
|
+
prerelease: false
|
65
|
+
version_requirements: !ruby/object:Gem::Requirement
|
66
|
+
requirements:
|
67
|
+
- - "~>"
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '0.12'
|
70
|
+
- !ruby/object:Gem::Dependency
|
71
|
+
name: haml-rails
|
72
|
+
requirement: !ruby/object:Gem::Requirement
|
73
|
+
requirements:
|
74
|
+
- - "~>"
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
version: '0.9'
|
77
|
+
type: :runtime
|
78
|
+
prerelease: false
|
79
|
+
version_requirements: !ruby/object:Gem::Requirement
|
80
|
+
requirements:
|
81
|
+
- - "~>"
|
82
|
+
- !ruby/object:Gem::Version
|
83
|
+
version: '0.9'
|
84
|
+
- !ruby/object:Gem::Dependency
|
85
|
+
name: jquery-rails
|
86
|
+
requirement: !ruby/object:Gem::Requirement
|
87
|
+
requirements:
|
88
|
+
- - "~>"
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: '4.0'
|
91
|
+
type: :runtime
|
92
|
+
prerelease: false
|
93
|
+
version_requirements: !ruby/object:Gem::Requirement
|
94
|
+
requirements:
|
95
|
+
- - "~>"
|
96
|
+
- !ruby/object:Gem::Version
|
97
|
+
version: '4.0'
|
98
|
+
- !ruby/object:Gem::Dependency
|
99
|
+
name: ngannotate-rails
|
100
|
+
requirement: !ruby/object:Gem::Requirement
|
101
|
+
requirements:
|
102
|
+
- - "~>"
|
103
|
+
- !ruby/object:Gem::Version
|
104
|
+
version: '1.0'
|
105
|
+
type: :runtime
|
106
|
+
prerelease: false
|
107
|
+
version_requirements: !ruby/object:Gem::Requirement
|
108
|
+
requirements:
|
109
|
+
- - "~>"
|
110
|
+
- !ruby/object:Gem::Version
|
111
|
+
version: '1.0'
|
112
|
+
description: Angular/Bootstrap frontend for MNOE
|
113
|
+
email:
|
114
|
+
- developers@maestrano.com
|
115
|
+
executables: []
|
116
|
+
extensions: []
|
117
|
+
extra_rdoc_files: []
|
118
|
+
files:
|
119
|
+
- LICENSE
|
120
|
+
- Rakefile
|
121
|
+
- app/assets/images/favicon.ico
|
122
|
+
- app/assets/images/mno_enterprise/impac/close-widget-pink.png
|
123
|
+
- app/assets/images/mno_enterprise/impac/close-widget.png
|
124
|
+
- app/assets/images/mno_enterprise/loader-32x32-bg-inverse.gif
|
125
|
+
- app/assets/images/mno_enterprise/loader-32x32-bg-main.gif
|
126
|
+
- app/assets/images/mno_enterprise/maestrano/logo-whitebg.png
|
127
|
+
- app/assets/javascripts/mno_enterprise/angular/app.js.coffee.erb
|
128
|
+
- app/assets/javascripts/mno_enterprise/angular/controllers/maestrano-controllers.js.coffee
|
129
|
+
- app/assets/javascripts/mno_enterprise/angular/controllers/modals/modals-ctrl.js.coffee
|
130
|
+
- app/assets/javascripts/mno_enterprise/angular/directives/dashboard/dashboard-account.js.coffee
|
131
|
+
- app/assets/javascripts/mno_enterprise/angular/directives/dashboard/dashboard-app-deletion-request.js.coffee
|
132
|
+
- app/assets/javascripts/mno_enterprise/angular/directives/dashboard/dashboard-apps-list.js.coffee
|
133
|
+
- app/assets/javascripts/mno_enterprise/angular/directives/dashboard/dashboard-components.js.coffee
|
134
|
+
- app/assets/javascripts/mno_enterprise/angular/directives/dashboard/dashboard-marketplace-app.js.coffee
|
135
|
+
- app/assets/javascripts/mno_enterprise/angular/directives/dashboard/dashboard-marketplace.js.coffee
|
136
|
+
- app/assets/javascripts/mno_enterprise/angular/directives/dashboard/dashboard-menu.js.coffee
|
137
|
+
- app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/arrears.js.coffee
|
138
|
+
- app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/billing.js.coffee
|
139
|
+
- app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/credit-card.js.coffee
|
140
|
+
- app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/index.js.coffee
|
141
|
+
- app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/invoices.js.coffee
|
142
|
+
- app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/members.js.coffee
|
143
|
+
- app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/settings.js.coffee
|
144
|
+
- app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/team-list.js.coffee
|
145
|
+
- app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/teams.js.coffee
|
146
|
+
- app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/file-model.js.coffee
|
147
|
+
- app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/maestrano-components.js.coffee
|
148
|
+
- app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-autostop-app.js.coffee
|
149
|
+
- app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-compile.js.coffee
|
150
|
+
- app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-currency-widget.js.coffee
|
151
|
+
- app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-current-currency.js.coffee
|
152
|
+
- app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-editable.js.coffee
|
153
|
+
- app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-flash-msg.js.coffee
|
154
|
+
- app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-helptext.js.coffee
|
155
|
+
- app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-loading-lounge.js.coffee
|
156
|
+
- app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-match.js.coffee
|
157
|
+
- app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-message-modal.js.coffee
|
158
|
+
- app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-notification-widget.js.coffee
|
159
|
+
- app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-partner-code-popup.js.coffee
|
160
|
+
- app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-partner-contact.js.coffee
|
161
|
+
- app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-password-strength.js.coffee
|
162
|
+
- app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-password.js.coffee
|
163
|
+
- app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-price-converter.js.coffee
|
164
|
+
- app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-scroll-to.js.coffee
|
165
|
+
- app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-typeahead.js.coffee
|
166
|
+
- app/assets/javascripts/mno_enterprise/angular/directives/user-setup/components.js.coffee
|
167
|
+
- app/assets/javascripts/mno_enterprise/angular/directives/user-setup/index.js.coffee
|
168
|
+
- app/assets/javascripts/mno_enterprise/angular/filters/maestrano-app-by-category.js.coffee
|
169
|
+
- app/assets/javascripts/mno_enterprise/angular/filters/maestrano-currency.js.coffee
|
170
|
+
- app/assets/javascripts/mno_enterprise/angular/filters/maestrano-filters.js.coffee
|
171
|
+
- app/assets/javascripts/mno_enterprise/angular/filters/maestrano-replace-underscore-with-space.js.coffee
|
172
|
+
- app/assets/javascripts/mno_enterprise/angular/filters/maestrano-titleize.js.coffee
|
173
|
+
- app/assets/javascripts/mno_enterprise/angular/filters/maestrano-truncate.js.coffee
|
174
|
+
- app/assets/javascripts/mno_enterprise/angular/services/dashboard/maestrano-app-instance.js.coffee
|
175
|
+
- app/assets/javascripts/mno_enterprise/angular/services/dashboard/maestrano-apps-document.js.coffee
|
176
|
+
- app/assets/javascripts/mno_enterprise/angular/services/dashboard/maestrano-user.js.coffee
|
177
|
+
- app/assets/javascripts/mno_enterprise/angular/services/dashboard/organization-svc.js.coffee
|
178
|
+
- app/assets/javascripts/mno_enterprise/angular/services/dashboard/team-svc.js.coffee
|
179
|
+
- app/assets/javascripts/mno_enterprise/angular/services/dashboard/tickets-svc.js.coffee
|
180
|
+
- app/assets/javascripts/mno_enterprise/angular/services/impac-config.svc.js.coffee
|
181
|
+
- app/assets/javascripts/mno_enterprise/angular/services/maestrano-apps-list-helper.js.coffee
|
182
|
+
- app/assets/javascripts/mno_enterprise/angular/services/maestrano-assets.js.coffee.erb
|
183
|
+
- app/assets/javascripts/mno_enterprise/angular/services/maestrano-current-currency.js.coffee
|
184
|
+
- app/assets/javascripts/mno_enterprise/angular/services/maestrano-current-user-svc.js.coffee
|
185
|
+
- app/assets/javascripts/mno_enterprise/angular/services/maestrano-exchange-rates.js.coffee
|
186
|
+
- app/assets/javascripts/mno_enterprise/angular/services/maestrano-message-svc.js.coffee
|
187
|
+
- app/assets/javascripts/mno_enterprise/angular/services/maestrano-miscellaneous.js.coffee.erb
|
188
|
+
- app/assets/javascripts/mno_enterprise/angular/services/maestrano-modal.js.coffee
|
189
|
+
- app/assets/javascripts/mno_enterprise/angular/services/maestrano-msg-bus.js.coffee
|
190
|
+
- app/assets/javascripts/mno_enterprise/angular/services/maestrano-services.js.coffee
|
191
|
+
- app/assets/javascripts/mno_enterprise/angular/services/maestrano-shopping-cart.js.coffee
|
192
|
+
- app/assets/javascripts/mno_enterprise/angular/services/maestrano-utilities.js.coffee
|
193
|
+
- app/assets/javascripts/mno_enterprise/angular/services/marketplace-svc.js.coffee
|
194
|
+
- app/assets/javascripts/mno_enterprise/application.js
|
195
|
+
- app/assets/javascripts/mno_enterprise/application_lib.js
|
196
|
+
- app/assets/javascripts/mno_enterprise/lib/angular-really-click.js
|
197
|
+
- app/assets/javascripts/mno_enterprise/lib/sortable.js
|
198
|
+
- app/assets/javascripts/mno_enterprise/lib/ui-bootstrap-tpls-0.13.4.js
|
199
|
+
- app/assets/javascripts/mno_enterprise/lib/xeditable.js
|
200
|
+
- app/assets/javascripts/mno_enterprise/twitter/bootstrap.js
|
201
|
+
- app/assets/javascripts/mno_enterprise/twitter/bootstrap/affix.js
|
202
|
+
- app/assets/javascripts/mno_enterprise/twitter/bootstrap/alert.js
|
203
|
+
- app/assets/javascripts/mno_enterprise/twitter/bootstrap/button.js
|
204
|
+
- app/assets/javascripts/mno_enterprise/twitter/bootstrap/carousel.js
|
205
|
+
- app/assets/javascripts/mno_enterprise/twitter/bootstrap/collapse.js
|
206
|
+
- app/assets/javascripts/mno_enterprise/twitter/bootstrap/dropdown.js
|
207
|
+
- app/assets/javascripts/mno_enterprise/twitter/bootstrap/modal.js
|
208
|
+
- app/assets/javascripts/mno_enterprise/twitter/bootstrap/popover.js
|
209
|
+
- app/assets/javascripts/mno_enterprise/twitter/bootstrap/scrollspy.js
|
210
|
+
- app/assets/javascripts/mno_enterprise/twitter/bootstrap/tab.js
|
211
|
+
- app/assets/javascripts/mno_enterprise/twitter/bootstrap/tooltip.js
|
212
|
+
- app/assets/javascripts/mno_enterprise/twitter/bootstrap/transition.js
|
213
|
+
- app/assets/javascripts/ng-performance/ngPerformance.html
|
214
|
+
- app/assets/javascripts/ng-performance/ngPerformance.js
|
215
|
+
- app/assets/stylesheets/mno_enterprise/application.css
|
216
|
+
- app/assets/stylesheets/mno_enterprise/custom/accordion.less
|
217
|
+
- app/assets/stylesheets/mno_enterprise/custom/alert.less
|
218
|
+
- app/assets/stylesheets/mno_enterprise/custom/angular-animate.less
|
219
|
+
- app/assets/stylesheets/mno_enterprise/custom/angular-material.less
|
220
|
+
- app/assets/stylesheets/mno_enterprise/custom/bootstrap-on-juice.less
|
221
|
+
- app/assets/stylesheets/mno_enterprise/custom/button.less
|
222
|
+
- app/assets/stylesheets/mno_enterprise/custom/footer.less
|
223
|
+
- app/assets/stylesheets/mno_enterprise/custom/form.less
|
224
|
+
- app/assets/stylesheets/mno_enterprise/custom/header.less
|
225
|
+
- app/assets/stylesheets/mno_enterprise/custom/impac-variables-override.less
|
226
|
+
- app/assets/stylesheets/mno_enterprise/custom/modal.less
|
227
|
+
- app/assets/stylesheets/mno_enterprise/custom/utilities.less
|
228
|
+
- app/assets/stylesheets/mno_enterprise/custom/utility/app-presentation.less
|
229
|
+
- app/assets/stylesheets/mno_enterprise/custom/utility/banners.less
|
230
|
+
- app/assets/stylesheets/mno_enterprise/custom/utility/carousel.less
|
231
|
+
- app/assets/stylesheets/mno_enterprise/custom/utility/helptext.less
|
232
|
+
- app/assets/stylesheets/mno_enterprise/custom/utility/miscellaneous.less
|
233
|
+
- app/assets/stylesheets/mno_enterprise/custom/utility/progress-bar.less
|
234
|
+
- app/assets/stylesheets/mno_enterprise/custom/utility/step.less
|
235
|
+
- app/assets/stylesheets/mno_enterprise/custom/utility/tabset.less
|
236
|
+
- app/assets/stylesheets/mno_enterprise/custom/utility/testimonial.less
|
237
|
+
- app/assets/stylesheets/mno_enterprise/custom/utility/text.less
|
238
|
+
- app/assets/stylesheets/mno_enterprise/custom/views/apps.less
|
239
|
+
- app/assets/stylesheets/mno_enterprise/custom/views/myspace.less
|
240
|
+
- app/assets/stylesheets/mno_enterprise/custom/views/pages/confirmation_lounge.less
|
241
|
+
- app/assets/stylesheets/mno_enterprise/custom/views/pages/home.less
|
242
|
+
- app/assets/stylesheets/mno_enterprise/custom/views/pages/oauth-config-page.less
|
243
|
+
- app/assets/stylesheets/mno_enterprise/custom/views/registration.less
|
244
|
+
- app/assets/stylesheets/mno_enterprise/custom/views/star.less
|
245
|
+
- app/assets/stylesheets/mno_enterprise/custom/views/templates/dashboard/bootstrap-wizard.less
|
246
|
+
- app/assets/stylesheets/mno_enterprise/custom/views/templates/dashboard/dashboard-marketplace.less
|
247
|
+
- app/assets/stylesheets/mno_enterprise/custom/views/templates/dashboard/dashboard-organization.less
|
248
|
+
- app/assets/stylesheets/mno_enterprise/custom/views/templates/dashboard/dashboard-teams.less
|
249
|
+
- app/assets/stylesheets/mno_enterprise/custom/views/templates/dashboard/support.less
|
250
|
+
- app/assets/stylesheets/mno_enterprise/custom/views/templates/dashboard/tickets.less
|
251
|
+
- app/assets/stylesheets/mno_enterprise/custom/views/templates/mno-editable.less
|
252
|
+
- app/assets/stylesheets/mno_enterprise/custom/views/templates/notification-widget.less
|
253
|
+
- app/assets/stylesheets/mno_enterprise/custom/views/templates/password-strength.less
|
254
|
+
- app/assets/stylesheets/mno_enterprise/custom/views/templates/shopping-cart.less
|
255
|
+
- app/assets/stylesheets/mno_enterprise/custom/views/templates/star-wizard.less
|
256
|
+
- app/assets/stylesheets/mno_enterprise/custom/views/user-setup.less
|
257
|
+
- app/assets/stylesheets/mno_enterprise/custom/xeditable.less
|
258
|
+
- app/assets/stylesheets/mno_enterprise/font-awesome/font-awesome-regular.less
|
259
|
+
- app/assets/stylesheets/mno_enterprise/font-awesome/font-awesome-sprockets.less
|
260
|
+
- app/assets/stylesheets/mno_enterprise/font-awesome/font-awesome.less
|
261
|
+
- app/assets/stylesheets/mno_enterprise/font-awesome/fonts/FontAwesome.otf
|
262
|
+
- app/assets/stylesheets/mno_enterprise/font-awesome/fonts/fontawesome-webfont.eot
|
263
|
+
- app/assets/stylesheets/mno_enterprise/font-awesome/fonts/fontawesome-webfont.svg
|
264
|
+
- app/assets/stylesheets/mno_enterprise/font-awesome/fonts/fontawesome-webfont.ttf
|
265
|
+
- app/assets/stylesheets/mno_enterprise/font-awesome/fonts/fontawesome-webfont.woff
|
266
|
+
- app/assets/stylesheets/mno_enterprise/font-awesome/fonts/fontawesome-webfont.woff2
|
267
|
+
- app/assets/stylesheets/mno_enterprise/font-awesome/framework/animated.less
|
268
|
+
- app/assets/stylesheets/mno_enterprise/font-awesome/framework/bordered-pulled.less
|
269
|
+
- app/assets/stylesheets/mno_enterprise/font-awesome/framework/core.less
|
270
|
+
- app/assets/stylesheets/mno_enterprise/font-awesome/framework/extras.less
|
271
|
+
- app/assets/stylesheets/mno_enterprise/font-awesome/framework/fixed-width.less
|
272
|
+
- app/assets/stylesheets/mno_enterprise/font-awesome/framework/icons.less
|
273
|
+
- app/assets/stylesheets/mno_enterprise/font-awesome/framework/larger.less
|
274
|
+
- app/assets/stylesheets/mno_enterprise/font-awesome/framework/list.less
|
275
|
+
- app/assets/stylesheets/mno_enterprise/font-awesome/framework/mixins.less
|
276
|
+
- app/assets/stylesheets/mno_enterprise/font-awesome/framework/rotated-flipped.less
|
277
|
+
- app/assets/stylesheets/mno_enterprise/font-awesome/framework/stacked.less
|
278
|
+
- app/assets/stylesheets/mno_enterprise/font-awesome/framework/variables.less
|
279
|
+
- app/assets/stylesheets/mno_enterprise/main.less
|
280
|
+
- app/assets/stylesheets/mno_enterprise/mixins.less
|
281
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/alerts.less
|
282
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/badges.less
|
283
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/bootstrap.less
|
284
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/breadcrumbs.less
|
285
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/button-groups.less
|
286
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/buttons.less
|
287
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/carousel.less
|
288
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/close.less
|
289
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/code.less
|
290
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/component-animations.less
|
291
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/dropdowns.less
|
292
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/forms.less
|
293
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/glyphicons.less
|
294
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/grid.less
|
295
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/input-groups.less
|
296
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/jumbotron.less
|
297
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/labels.less
|
298
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/list-group.less
|
299
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/media.less
|
300
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins.less
|
301
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/alerts.less
|
302
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/background-variant.less
|
303
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/border-radius.less
|
304
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/buttons.less
|
305
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/center-block.less
|
306
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/clearfix.less
|
307
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/forms.less
|
308
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/gradients.less
|
309
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/grid-framework.less
|
310
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/grid.less
|
311
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/hide-text.less
|
312
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/image.less
|
313
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/labels.less
|
314
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/list-group.less
|
315
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/nav-divider.less
|
316
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/nav-vertical-align.less
|
317
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/opacity.less
|
318
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/pagination.less
|
319
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/panels.less
|
320
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/progress-bar.less
|
321
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/reset-filter.less
|
322
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/resize.less
|
323
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/responsive-visibility.less
|
324
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/size.less
|
325
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/tab-focus.less
|
326
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/table-row.less
|
327
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/text-emphasis.less
|
328
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/text-overflow.less
|
329
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/vendor-prefixes.less
|
330
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/modals.less
|
331
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/navbar.less
|
332
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/navs.less
|
333
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/normalize.less
|
334
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/pager.less
|
335
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/pagination.less
|
336
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/panels.less
|
337
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/popovers.less
|
338
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/print.less
|
339
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/progress-bars.less
|
340
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/responsive-embed.less
|
341
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/responsive-utilities.less
|
342
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/scaffolding.less
|
343
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/tables.less
|
344
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/theme.less
|
345
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/thumbnails.less
|
346
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/tooltip.less
|
347
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/type.less
|
348
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/utilities.less
|
349
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/variables.less
|
350
|
+
- app/assets/stylesheets/mno_enterprise/twitter-bootstrap/wells.less
|
351
|
+
- app/assets/stylesheets/mno_enterprise/variables.less
|
352
|
+
- app/assets/templates/mno_enterprise/dashboard/account.html
|
353
|
+
- app/assets/templates/mno_enterprise/dashboard/app_deletion.html
|
354
|
+
- app/assets/templates/mno_enterprise/dashboard/apps_list.html
|
355
|
+
- app/assets/templates/mno_enterprise/dashboard/horizontal_menu.html
|
356
|
+
- app/assets/templates/mno_enterprise/dashboard/marketplace/index.html
|
357
|
+
- app/assets/templates/mno_enterprise/dashboard/marketplace/show.html
|
358
|
+
- app/assets/templates/mno_enterprise/dashboard/menu.html
|
359
|
+
- app/assets/templates/mno_enterprise/dashboard/organization/arrears.html
|
360
|
+
- app/assets/templates/mno_enterprise/dashboard/organization/billing.html
|
361
|
+
- app/assets/templates/mno_enterprise/dashboard/organization/credit-card.html
|
362
|
+
- app/assets/templates/mno_enterprise/dashboard/organization/index.full.html
|
363
|
+
- app/assets/templates/mno_enterprise/dashboard/organization/index.html
|
364
|
+
- app/assets/templates/mno_enterprise/dashboard/organization/invoices.html
|
365
|
+
- app/assets/templates/mno_enterprise/dashboard/organization/members.html
|
366
|
+
- app/assets/templates/mno_enterprise/dashboard/organization/settings.html
|
367
|
+
- app/assets/templates/mno_enterprise/dashboard/teams/index.html
|
368
|
+
- app/assets/templates/mno_enterprise/dashboard/teams/member-add-modal.html
|
369
|
+
- app/assets/templates/mno_enterprise/dashboard/teams/member-removal-modal.html
|
370
|
+
- app/assets/templates/mno_enterprise/dashboard/teams/team-add-modal.html
|
371
|
+
- app/assets/templates/mno_enterprise/dashboard/teams/team-delete-modal.html
|
372
|
+
- app/assets/templates/mno_enterprise/dashboard/teams/team-list.html
|
373
|
+
- app/assets/templates/mno_enterprise/default_template.html
|
374
|
+
- app/assets/templates/mno_enterprise/maestrano-components/autostop_app.html
|
375
|
+
- app/assets/templates/mno_enterprise/maestrano-components/currency_widget.html
|
376
|
+
- app/assets/templates/mno_enterprise/maestrano-components/editable.html
|
377
|
+
- app/assets/templates/mno_enterprise/maestrano-components/loading_lounge.html
|
378
|
+
- app/assets/templates/mno_enterprise/maestrano-components/modal-messages/congratulations.html
|
379
|
+
- app/assets/templates/mno_enterprise/maestrano-components/modal-messages/default.html
|
380
|
+
- app/assets/templates/mno_enterprise/maestrano-components/modal-messages/information.html
|
381
|
+
- app/assets/templates/mno_enterprise/maestrano-components/notification-widget.html
|
382
|
+
- app/assets/templates/mno_enterprise/maestrano-components/password.html
|
383
|
+
- app/assets/templates/mno_enterprise/maestrano-components/star_wizard.html
|
384
|
+
- app/assets/templates/mno_enterprise/maestrano-components/upload_spreadsheet.html
|
385
|
+
- app/assets/templates/mno_enterprise/modals/new-organization-reseller-req.html
|
386
|
+
- app/assets/templates/mno_enterprise/modals/new-organization.html
|
387
|
+
- app/assets/templates/mno_enterprise/user-setup/index.html
|
388
|
+
- app/controllers/mno_enterprise/invoices_controller.rb
|
389
|
+
- app/controllers/mno_enterprise/pages_controller.rb
|
390
|
+
- app/controllers/mno_enterprise/user_setup_controller.rb
|
391
|
+
- app/views/layouts/mno_enterprise/_application_js.html.haml
|
392
|
+
- app/views/layouts/mno_enterprise/_common_cdn_lib_js.html.haml
|
393
|
+
- app/views/layouts/mno_enterprise/_footer_files.html.haml
|
394
|
+
- app/views/layouts/mno_enterprise/_header_files.html.haml
|
395
|
+
- app/views/layouts/mno_enterprise/_impersonate_header.html.haml
|
396
|
+
- app/views/layouts/mno_enterprise/_public_page_header.html.haml
|
397
|
+
- app/views/layouts/mno_enterprise/application.html.haml
|
398
|
+
- app/views/layouts/mno_enterprise/application_dashboard.html.haml
|
399
|
+
- app/views/layouts/mno_enterprise/third_party/_google_tag_container.html.haml
|
400
|
+
- app/views/mno_enterprise/pages/app_access_unauthorized.html.haml
|
401
|
+
- app/views/mno_enterprise/pages/app_logout.html.haml
|
402
|
+
- app/views/mno_enterprise/pages/billing_details_required.html.haml
|
403
|
+
- app/views/mno_enterprise/pages/loading.html.haml
|
404
|
+
- app/views/mno_enterprise/pages/myspace.html.haml
|
405
|
+
- app/views/mno_enterprise/provision/_provision_apps.html.haml
|
406
|
+
- app/views/mno_enterprise/provision/_select_organization.html.haml
|
407
|
+
- app/views/mno_enterprise/provision/new.html.haml
|
408
|
+
- app/views/mno_enterprise/user_setup/index.html.haml
|
409
|
+
- config/initializers/ng-annotate.rb
|
410
|
+
- config/initializers/ng-performance.rb
|
411
|
+
- config/routes.rb
|
412
|
+
- lib/assets/javascripts/impac-angular.js
|
413
|
+
- lib/assets/stylesheets/impac-angular.less
|
414
|
+
- lib/mno-enterprise-frontend.rb
|
415
|
+
- lib/mno_enterprise/frontend.rb
|
416
|
+
- lib/mno_enterprise/frontend/assets_util.rb
|
417
|
+
- lib/mno_enterprise/frontend/concerns/README.md
|
418
|
+
- lib/mno_enterprise/frontend/concerns/controllers/pages_controller.rb
|
419
|
+
- lib/mno_enterprise/frontend/engine.rb
|
420
|
+
- spec/controllers/mno_enterprise/auth/confirmations_controller_spec.rb
|
421
|
+
- spec/controllers/mno_enterprise/invoices_controller_spec.rb
|
422
|
+
- spec/controllers/mno_enterprise/pages_controller_spec.rb
|
423
|
+
- spec/controllers/mno_enterprise/user_setup_controller_spec.rb
|
424
|
+
- spec/controllers/mno_enterprise/webhook/o_auth_controller_spec.rb
|
425
|
+
- spec/rails_helper.rb
|
426
|
+
- spec/routing/mno_enterprise/invoices_controller_routing_spec.rb
|
427
|
+
- spec/routing/mno_enterprise/pages_controller_routing_spec.rb
|
428
|
+
- spec/routing/mno_enterprise/user_setup_controller_routing_spec.rb
|
429
|
+
- spec/spec_helper.rb
|
430
|
+
homepage: https://maestrano.com
|
431
|
+
licenses:
|
432
|
+
- Maestrano Enterprise License V1
|
433
|
+
metadata: {}
|
434
|
+
post_install_message:
|
435
|
+
rdoc_options: []
|
436
|
+
require_paths:
|
437
|
+
- lib
|
438
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
439
|
+
requirements:
|
440
|
+
- - ">="
|
441
|
+
- !ruby/object:Gem::Version
|
442
|
+
version: '0'
|
443
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
444
|
+
requirements:
|
445
|
+
- - ">="
|
446
|
+
- !ruby/object:Gem::Version
|
447
|
+
version: '0'
|
448
|
+
requirements: []
|
449
|
+
rubyforge_project:
|
450
|
+
rubygems_version: 2.2.2
|
451
|
+
signing_key:
|
452
|
+
specification_version: 4
|
453
|
+
summary: Maestrano Enterprise - Frontend
|
454
|
+
test_files:
|
455
|
+
- spec/controllers/mno_enterprise/auth/confirmations_controller_spec.rb
|
456
|
+
- spec/controllers/mno_enterprise/invoices_controller_spec.rb
|
457
|
+
- spec/controllers/mno_enterprise/pages_controller_spec.rb
|
458
|
+
- spec/controllers/mno_enterprise/user_setup_controller_spec.rb
|
459
|
+
- spec/controllers/mno_enterprise/webhook/o_auth_controller_spec.rb
|
460
|
+
- spec/rails_helper.rb
|
461
|
+
- spec/routing/mno_enterprise/invoices_controller_routing_spec.rb
|
462
|
+
- spec/routing/mno_enterprise/pages_controller_routing_spec.rb
|
463
|
+
- spec/routing/mno_enterprise/user_setup_controller_routing_spec.rb
|
464
|
+
- spec/spec_helper.rb
|