mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-07-17 15:04:34 +00:00
Client certificate support is added as a new separate type of option for access-lists. This commit is the support code to enable access-lists to contain Client Certificate references.
8 lines
178 B
JavaScript
8 lines
178 B
JavaScript
const Mn = require('backbone.marionette');
|
|
const template = require('./clientca.ejs');
|
|
|
|
module.exports = Mn.View.extend({
|
|
template: template,
|
|
className: 'row'
|
|
});
|