glitch-soc/mastodon

View on GitHub
lib/chewy/settings_extensions.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Chewy
  module SettingsExtensions
    def enabled?
      settings[:enabled]
    end
  end
end

Chewy.extend(Chewy::SettingsExtensions)