Some checks failed
Lock Threads / action (push) Has been cancelled
Mark stale issues and pull requests / stale (push) Has been cancelled
Publish Chatwoot EE docker images / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Publish Chatwoot EE docker images / build (linux/arm64, ubuntu-22.04-arm) (push) Has been cancelled
Publish Chatwoot EE docker images / merge (push) Has been cancelled
Publish Chatwoot CE docker images / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Publish Chatwoot CE docker images / build (linux/arm64, ubuntu-22.04-arm) (push) Has been cancelled
Publish Chatwoot CE docker images / merge (push) Has been cancelled
Run Chatwoot CE spec / lint-backend (push) Has been cancelled
Run Chatwoot CE spec / lint-frontend (push) Has been cancelled
Run Chatwoot CE spec / frontend-tests (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (0, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (1, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (10, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (11, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (12, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (13, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (14, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (15, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (2, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (3, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (4, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (5, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (6, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (7, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (8, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (9, 16) (push) Has been cancelled
Run Linux nightly installer / nightly (push) Has been cancelled
- Add Logistics component with progress tracking - Add OrderDetail component for order information - Support data-driven steps and actions - Add blue color scale to widget SCSS - Fix node overflow and progress bar rendering issues - Add English translations for dashboard components Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
45 lines
1.7 KiB
Ruby
45 lines
1.7 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
Devise.setup do |config|
|
|
# ==> Configuration for the Devise Secure Password extension
|
|
# Module: password_has_required_content
|
|
#
|
|
# Configure password content requirements including the number of uppercase,
|
|
# lowercase, number, and special characters that are required. To configure the
|
|
# minimum and maximum length refer to the Devise config.password_length
|
|
# standard configuration parameter.
|
|
|
|
# The number of uppercase letters (latin A-Z) required in a password:
|
|
config.password_required_uppercase_count = 1
|
|
|
|
# The number of lowercase letters (latin A-Z) required in a password:
|
|
config.password_required_lowercase_count = 1
|
|
|
|
# The number of numbers (0-9) required in a password:
|
|
config.password_required_number_count = 1
|
|
|
|
# The number of special characters (!@#$%^&*()_+-=[]{}|') required in a password:
|
|
config.password_required_special_character_count = 1
|
|
|
|
# we are not using the configurations below
|
|
# ==> Configuration for the Devise Secure Password extension
|
|
# Module: password_disallows_frequent_reuse
|
|
#
|
|
# The number of previously used passwords that can not be reused:
|
|
# config.password_previously_used_count = 8
|
|
|
|
# ==> Configuration for the Devise Secure Password extension
|
|
# Module: password_disallows_frequent_changes
|
|
# *Requires* password_disallows_frequent_reuse
|
|
#
|
|
# The minimum time that must pass between password changes:
|
|
# config.password_minimum_age = 1.days
|
|
|
|
# ==> Configuration for the Devise Secure Password extension
|
|
# Module: password_requires_regular_updates
|
|
# *Requires* password_disallows_frequent_reuse
|
|
#
|
|
# The maximum allowed age of a password:
|
|
# config.password_maximum_age = 180.days
|
|
end
|