Follow up - 2ffca390a9
- Fixes #1961 - S/MIME integration: S/MIME manage view not update after adding certificate or key.
This commit is contained in:
parent
47a46fb6fb
commit
c78652867b
2 changed files with 3 additions and 3 deletions
|
@ -55,12 +55,12 @@ class Form extends App.Controller
|
||||||
|
|
||||||
addCertificate: =>
|
addCertificate: =>
|
||||||
new Certificate(
|
new Certificate(
|
||||||
callback: @list
|
callback: @certList
|
||||||
)
|
)
|
||||||
|
|
||||||
addPrivateKey: =>
|
addPrivateKey: =>
|
||||||
new PrivateKey(
|
new PrivateKey(
|
||||||
callback: @list
|
callback: @certList
|
||||||
)
|
)
|
||||||
|
|
||||||
updateGroup: (e) =>
|
updateGroup: (e) =>
|
||||||
|
|
|
@ -15,7 +15,7 @@ RSpec.describe 'Manage > Integration > S/MIME', type: :system do
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'enabling and adding of public and private key' do
|
it 'enabling and adding of public and private key' do
|
||||||
visit '#system/integration/smime'
|
visit 'system/integration/smime'
|
||||||
|
|
||||||
# enable S/MIME
|
# enable S/MIME
|
||||||
click 'label[for=setting-switch]'
|
click 'label[for=setting-switch]'
|
||||||
|
|
Loading…
Reference in a new issue