aboutsummaryrefslogtreecommitdiff
path: root/app/models/user.rb
blob: b78f6f431772493c03741a8ada04203f1b483ddf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# == Schema Information
#
# Table name: users
#
#  id                      :integer          not null, primary key
#  name                    :string
#  email                   :string
#  uid                     :string
#  organisation_slug       :string
#  organisation_content_id :string
#  permissions             :text
#  remotely_signed_out     :boolean          default(FALSE)
#  disabled                :boolean          default(FALSE)
#

class User < ApplicationRecord
  include GDS::SSO::User

  serialize :permissions, Array
end