diff options
author | kibigo! <marrus-sh@users.noreply.github.com> | 2017-09-25 19:24:32 -0700 |
---|---|---|
committer | kibigo! <marrus-sh@users.noreply.github.com> | 2017-09-25 19:24:32 -0700 |
commit | 86e617a839bd4eb45ace52ab226a4e93bb184ff0 (patch) | |
tree | 63e4513681af278474c2da1e592a13a6043719b2 /app/models | |
parent | c2b479efecf1ce1f4a45e626963b7ce7e203b8d6 (diff) |
Better themeing support!!
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/user.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/models/user.rb b/app/models/user.rb index 5e548c1ef..3bf069a31 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -110,6 +110,10 @@ class User < ApplicationRecord settings.noindex end + def setting_theme + settings.theme + end + def token_for_app(a) return nil if a.nil? || a.owner != self Doorkeeper::AccessToken |