dblock/slack-ruby-client

View on GitHub
lib/slack/real_time/models/channel.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Slack
  module RealTime
    module Models
      class Channel < Base
        def is_public? # rubocop:disable Naming/PredicateName
          !is_private?
        end
      end
    end
  end
end