mirror of
https://github.com/danbee/danbarberphoto
synced 2025-03-04 08:49:07 +00:00
27 lines
800 B
Ruby
27 lines
800 B
Ruby
Typus.setup do |config|
|
|
|
|
# Application name.
|
|
config.admin_title = "Dan Barber Photography"
|
|
# config.admin_sub_title = ""
|
|
|
|
# When mailer_sender is set, password recover is enabled. This email
|
|
# address will be used in Admin::Mailer.
|
|
# config.mailer_sender = "admin@example.com"
|
|
|
|
# Define file attachment settings.
|
|
# config.file_preview = :typus_preview
|
|
# config.file_thumbnail = :typus_thumbnail
|
|
|
|
# Authentication: +:none+, +:http_basic+
|
|
# Run `rails g typus:migration` if you need an advanced authentication system.
|
|
# config.authentication = :none
|
|
|
|
# Define username and password for +:http_basic+ authentication
|
|
# config.username = "admin"
|
|
# config.password = "columbia"
|
|
|
|
# Define available languages on the admin interface.
|
|
# config.available_locales = [:en]
|
|
|
|
end
|