Created
March 18, 2010 17:45
-
-
Save twinge/336625 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Cmt | |
CONFIG = { | |
# Allow GCX logins in the form on the CMT login page. | |
:gcx_direct_logins => true, | |
# Allow local user logins in the form on the CMT login page. | |
:local_direct_logins => true, | |
# Allow GCX logins using the GCX login page (aka the greenscreen). | |
# This will show a link on the login page. If the direct GCX or | |
# local logins are also allowed, both the form and link will be | |
# displayed. | |
:gcx_greenscreen => false, | |
# Show gcx connexion bar | |
:gcx_connexion_bar => false, | |
# Disable GCX Import functionality | |
:gcx_import_disabled => false, | |
# Forces users to go through a longer process for validating accounts. | |
# Not used yet. | |
:full_account_verification => true, | |
# Removes the options of specifying 'poor' timeslots in timetable | |
:hide_poor_status_in_scheduler => true, | |
# Default ministry name | |
:default_ministry_name => 'Campus Crusade', | |
#Associate person with no ministry to default ministry | |
:associate_with_default_ministry => true, | |
# Default Country - When set, the campus filter is disabled and all | |
# campuses from this country are displayed | |
# Set to nil(:campus_scope_country => nil) to disable. | |
:campus_scope_country => nil, | |
:default_country => 'United States', | |
# Disable second address line | |
:disable_address2 => false, | |
# Default website title appearing at the top of the browser | |
:web_title => 'Campus Crusade :: Movement Tracker', | |
# When no Permission object is found for a controller/action, | |
# does the user have permission | |
:permissions_granted_by_default => true, | |
#When true, hides timetable impact dropdown in group_types form | |
:disable_group_timetable_impact => true, | |
# When enabled, users will be able to use the 'find common times' algorithim when making groups | |
:find_common_times_enabled => false, | |
# All staff can edit any student's timetable in their ministry | |
:staff_can_edit_student_timetables => false, | |
# When enabled, training items and catergories will be shown and can be editted by users | |
:training_enabled => true, | |
# When enabled, leadership notes can be editted and view on someone's profile when the user has permission | |
:leadership_notes_enabled => true, | |
# When enabled, involvement questions will appear as a tab in profiles and also in the customize area | |
:involvement_questions_enabled => true, | |
# When enabled, users can connect their CMT profile to that of their facebook | |
:facebook_connectivity_enabled => true, | |
# When enabled, users can edit profile pictures on their profile | |
:profile_picture_enabled => true, | |
# prefix to preprend to the subject of each email going out | |
:email_subject_prefix => "[MT] ", | |
# the from address for each outgoing email | |
:email_from_address => "[email protected]" | |
} | |
end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment