Added Auddio API key setting to advanced settings panel.

This commit is contained in:
casey langen 2020-01-23 19:48:26 -08:00
parent 3e0d508c10
commit d1b101e6dc

View File

@ -114,6 +114,7 @@ static inline std::shared_ptr<ISchema> AdvancedSettingsSchema() {
schema->AddBool(cube::prefs::keys::DisableRatingColumn, false); schema->AddBool(cube::prefs::keys::DisableRatingColumn, false);
schema->AddString(cube::prefs::keys::RatingPositiveChar, kFilledStar.c_str()); schema->AddString(cube::prefs::keys::RatingPositiveChar, kFilledStar.c_str());
schema->AddString(cube::prefs::keys::RatingNegativeChar, kEmptyStar.c_str()); schema->AddString(cube::prefs::keys::RatingNegativeChar, kEmptyStar.c_str());
schema->AddString(core::prefs::keys::AuddioApiToken, "");
return schema; return schema;
} }