Lots of smaller fixes:
- Add the rotation_duration to the keys API - Have the key service UI use the new rotation_duration field - Fix notification deletion lookup path - Add proper support for the new notification in the UI - Only delete expired keys after 7 days (configurable) - Fix angular digest loop - Fix unit tests - Regenerate initdb
This commit is contained in:
parent
2805dad64f
commit
522cf68c5d
12 changed files with 86 additions and 20 deletions
|
@ -18,7 +18,8 @@ angular.module('quay').directive('datetimePicker', function () {
|
|||
$element.find('input').datetimepicker({
|
||||
'format': 'LLL',
|
||||
'sideBySide': true,
|
||||
'showClear': true
|
||||
'showClear': true,
|
||||
'minDate': new Date()
|
||||
});
|
||||
|
||||
$element.find('input').on("dp.change", function (e) {
|
||||
|
|
Reference in a new issue