Skip to content

Feature: Add multi factor authentication #4345

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

Open
wants to merge 19 commits into
base: develop
Choose a base branch
from
Open
Changes from 1 commit
Commits
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
Remove console.logs
  • Loading branch information
badkeyy committed Jan 9, 2025
commit 69f792067569a33fd9d8152b5d7f3f3378fba9d2
2 changes: 0 additions & 2 deletions frontend/js/app/nginx/certificates/list/item.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,11 @@ module.exports = Mn.View.extend({
return {
canManage: App.Cache.User.canManage('certificates'),
isExpired: function () {
console.log(this);
return moment(this.expires_on).isBefore(moment());
},
dns_providers: dns_providers,
active_domain_names: function () {
const { proxy_hosts = [], redirect_hosts = [], dead_hosts = [] } = this;
console.log(proxy_hosts)
return [...proxy_hosts, ...redirect_hosts, ...dead_hosts].reduce((acc, host) => {
acc.push(...(host.domain_names || []));
return acc;
Expand Down