* Add consumable invites * Add UI for generating invite codes * Add tests * Display max uses and expiration in invites table, delete invite * Remove unused column and redundant validator - Default follows not used, probably bad idea - InviteCodeValidator is redundant because RegistrationsController checks invite code validity * Add admin setting to disable invites * Add admin UI for invites, configurable role for invite creation - Admin UI that lists everyone's invites, always available - Admin setting min_invite_role to control who can invite people - Non-admin invite UI only visible if users are allowed to * Do not remove invites from database, expire them instantly
		
			
				
	
	
		
			36 lines
		
	
	
		
			784 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			784 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| class Form::AdminSettings
 | |
|   include ActiveModel::Model
 | |
| 
 | |
|   delegate(
 | |
|     :site_contact_username,
 | |
|     :site_contact_username=,
 | |
|     :site_contact_email,
 | |
|     :site_contact_email=,
 | |
|     :site_title,
 | |
|     :site_title=,
 | |
|     :site_description,
 | |
|     :site_description=,
 | |
|     :site_extended_description,
 | |
|     :site_extended_description=,
 | |
|     :site_terms,
 | |
|     :site_terms=,
 | |
|     :open_registrations,
 | |
|     :open_registrations=,
 | |
|     :closed_registrations_message,
 | |
|     :closed_registrations_message=,
 | |
|     :open_deletion,
 | |
|     :open_deletion=,
 | |
|     :timeline_preview,
 | |
|     :timeline_preview=,
 | |
|     :show_staff_badge,
 | |
|     :show_staff_badge=,
 | |
|     :bootstrap_timeline_accounts,
 | |
|     :bootstrap_timeline_accounts=,
 | |
|     :min_invite_role,
 | |
|     :min_invite_role=,
 | |
|     to: Setting
 | |
|   )
 | |
| end
 |