mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:29:30 +08:00
38b8d68c68
* Add user_home configuration option * Use the new user_home preference to actually show the right home page * Fix trailing whitespace * Update user_option_serializer.rb * Fix JavaScript default homepage tests * Use an object instead of a giant switch * Remove trailing whitespace * Make the default `user_home` set to `null` instead of `0` * Rename user_home to homepage_id
16 lines
415 B
Ruby
16 lines
415 B
Ruby
class HomePageConstraint
|
|
def initialize(filter)
|
|
@filter = filter
|
|
end
|
|
|
|
def matches?(request)
|
|
return @filter == 'finish_installation' if SiteSetting.has_login_hint?
|
|
|
|
provider = Discourse.current_user_provider.new(request.env)
|
|
homepage = provider&.current_user&.user_option&.homepage || SiteSetting.anonymous_homepage
|
|
homepage == @filter
|
|
rescue Discourse::InvalidAccess
|
|
false
|
|
end
|
|
end
|