maestrano/mno-enterprise

View on GitHub
core/app/models/mno_enterprise/team.rb

Summary

Maintainability
A
0 mins
Test Coverage
# == Schema Information
#
# Endpoint:
#  - /v1/teams
#  - /v1/organizations/:organization_id/teams
#
#  id              :integer         not null, primary key
#  name            :string(255)
#  created_at      :datetime        not null
#  updated_at      :datetime        not null
#  organization_id :integer
#

module MnoEnterprise
  class Team < BaseResource
    include MnoEnterprise::Concerns::Models::Team
  end
end