application_helper.rb 205 B

123456789101112
  1. # frozen_string_literal: true
  2. module ApplicationHelper
  3. def twitter?
  4. user_signed_in? && !current_user.twitter.nil?
  5. end
  6. def mastodon?
  7. user_signed_in? && !current_user.mastodon.nil?
  8. end
  9. end