mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-18 08:10:13 +01:00
10 lines
206 B
Ruby
10 lines
206 B
Ruby
|
|
module Common
|
||
|
|
def set_theme
|
||
|
|
if prefs && prefs.theme
|
||
|
|
@user_theme = prefs.theme.parameterize.underscore
|
||
|
|
else
|
||
|
|
@user_theme = SITE_CONFIG['default_theme'] || 'light_blue'
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|