Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Application services tab #1237

Merged
merged 36 commits into from
Sep 15, 2017
Merged
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
c2534d8
Duplicate application service tab as a base for service catalogue
KlapTrap Aug 22, 2017
bfdbd23
Add seperate cards for service catalogue and service tabs
KlapTrap Aug 22, 2017
82b8b41
Fetch and display service instances on application service tab
KlapTrap Aug 22, 2017
71f836f
Ensure both application service tab and service catalogue tab are usi…
KlapTrap Aug 22, 2017
a5512d1
Add relevent fields to services tab cards
KlapTrap Aug 23, 2017
ef6788d
Update service card and properly unbind service instance
KlapTrap Aug 23, 2017
4b07049
Add all management command to the service instance tab
KlapTrap Aug 23, 2017
64a1b81
Manage instance now restricts the instance page by service type
KlapTrap Aug 23, 2017
f4ffbe3
Fix binding filtering and rename service catalogue directives
KlapTrap Aug 24, 2017
cb7e25b
Tidy up i18n and error messages in service and service catalogue pages
KlapTrap Aug 24, 2017
bb1899a
Show friendly message when filtering instances via service catalogue …
KlapTrap Aug 24, 2017
8b7e89e
Changed the application Services tab to Service Instance
KlapTrap Aug 24, 2017
86e2fec
Fixed application services filter clear link click handler
KlapTrap Aug 24, 2017
dbc37c4
Add service count to app summary page and move detach from the action…
KlapTrap Aug 24, 2017
f3b934c
Changed app summary service count string to be inline with surroundin…
KlapTrap Aug 24, 2017
c7d7d3c
Added a couple of comment to services module
KlapTrap Aug 24, 2017
f2713ad
Fixed service card test
KlapTrap Aug 24, 2017
c2385b5
Removed unused manage services module
KlapTrap Aug 24, 2017
ca2191a
Add/fix tests for service tabs
KlapTrap Aug 25, 2017
3ea4f3b
Comvert callback to promise
KlapTrap Aug 25, 2017
c4953bf
Merge branch 'master' into application-services-tab
KlapTrap Aug 25, 2017
3c015d8
Fixed e2e tests
KlapTrap Aug 29, 2017
b916f3c
Merge branch 'master' into application-services-tab
KlapTrap Aug 29, 2017
6f0b4f6
Linting
KlapTrap Aug 29, 2017
a2967dc
Fixed linting and unit tests
KlapTrap Sep 6, 2017
531e483
Merge branch 'master' into application-services-tab
KlapTrap Sep 11, 2017
f9c3fc4
Translated all the things and fixed minor styling issues after PR review
KlapTrap Sep 11, 2017
7875705
Merge branch 'master' into application-services-tab
KlapTrap Sep 12, 2017
6ca40e8
Fixed linting failures from master
KlapTrap Sep 12, 2017
790df8e
Merge remote-tracking branch 'origin/master' into application-service…
nwmac Sep 12, 2017
1f6f744
Merge remote-tracking branch 'origin/master' into application-service…
nwmac Sep 13, 2017
1b8ff97
Fix lint issues
nwmac Sep 13, 2017
72f616e
Merge remote-tracking branch 'origin/master' into application-service…
nwmac Sep 14, 2017
bf94e14
Fixes for failing e2e tests
nwmac Sep 15, 2017
86463a7
Fix localisation of catalogue
nwmac Sep 15, 2017
666b54b
Small fixes
richard-cox Sep 15, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'master' into application-services-tab
* master: (33 commits)
  Updated post-flight script in response to feedback
  Add issue_template and cf push log docs
  Fix incorrect caching and reset behaviour of app wall filters - Ensure that when we reset dodgy cluster/org values we also reset org/space - Previously we were showing filter by 'all' for org/space but still applying filter containing valid org/space guid - Reset fixed by not entering dodgy state
  Fix create app commit button text
  Fix the title of the manage users dialog - When managing a single user the user's name was missing from the title - Ensure async task dialog also includes translate-values just like detail view
  Add readme for deploy/uaa
  Temporary fix for gulp-sourcemaps
  Two minor fixes - Ensure we clear any invlaid locale from local storage - Token expired warning now covers the entire endpoint dashboard table again
  Fix another typo
  Changes in response to feedback
  Rename cnap headers to cap (#1235)
  Add context labels to CI tasks
  Fix e2e #2
  E2E fix
  Workaround for chome bug - Tripple click on endpoint dashboard endpoint url lead to selection of icon as well "https://api.10.84.93.96.nip.io:8443
  Update helm chart to use mariaDB
  Fix unit tests
  Fix unit tests
  Undo helm changes, as these will be done in a different PR
  Add support for mysql
  ...
  • Loading branch information
KlapTrap committed Sep 11, 2017
commit 531e483dd92468038034f9f87b2602d66d8bbb41
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
hide: false,
uiSref: 'cf.applications.application.services',
uiSrefParam: function () {
return {guid: $stateParams.guid};
return { guid: $stateParams.guid };
},
label: 'app.app-info.app-tabs.services.label'
});
Expand Down Expand Up @@ -72,7 +72,7 @@
stopFilterWatch();
$stateParams.serviceType = null;
that.managingType = null;
$state.go('.', $stateParams, {notify: false});
$state.go('.', $stateParams, { notify: false });
}
});
}
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.