Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 04:12:53 +01:00
Add email_messages_level and email_digests as updatable user fields
Dieser Commit ist enthalten in:
Ursprung
1f7f17ee30
Commit
224903b025
2 geänderte Dateien mit 18 neuen und 4 gelöschten Zeilen
|
@ -47,7 +47,9 @@ const userProperties = [
|
||||||
'website',
|
'website',
|
||||||
'bio_raw',
|
'bio_raw',
|
||||||
'trust_level',
|
'trust_level',
|
||||||
'email_level'
|
'email_level',
|
||||||
|
'email_messages_level',
|
||||||
|
'email_digests'
|
||||||
];
|
];
|
||||||
|
|
||||||
const notificationLevels = [
|
const notificationLevels = [
|
||||||
|
|
|
@ -1,7 +1,19 @@
|
||||||
class CustomWizard::Mapper
|
class CustomWizard::Mapper
|
||||||
attr_accessor :inputs, :data, :user
|
attr_accessor :inputs, :data, :user
|
||||||
|
|
||||||
USER_FIELDS = ['name', 'username', 'email', 'date_of_birth', 'title', 'locale', 'trust_level', 'email_level']
|
USER_FIELDS = [
|
||||||
|
'name',
|
||||||
|
'username',
|
||||||
|
'email',
|
||||||
|
'date_of_birth',
|
||||||
|
'title',
|
||||||
|
'locale',
|
||||||
|
'trust_level',
|
||||||
|
'email_level',
|
||||||
|
'email_messages_level',
|
||||||
|
'email_digests'
|
||||||
|
]
|
||||||
|
|
||||||
PROFILE_FIELDS = ['location', 'website', 'bio_raw']
|
PROFILE_FIELDS = ['location', 'website', 'bio_raw']
|
||||||
|
|
||||||
def self.user_fields
|
def self.user_fields
|
||||||
|
|
Laden …
In neuem Issue referenzieren