aboutsummaryrefslogtreecommitdiff
path: root/app/models
diff options
context:
space:
mode:
authorhellekin <hellekin@cepheide.org>2020-10-05 21:51:37 +0200
committerhellekin <hellekin@cepheide.org>2020-10-05 21:51:37 +0200
commit48031dde29d6dc4a0ba84c445ae4c07627257d4a (patch)
treefdbe4b896b04ad9e39ebb0b73516b77b61330dd2 /app/models
parent81fb71f0510a5464634a65d97939f6fa54f419dd (diff)
downloadincommon-map-48031dde29d6dc4a0ba84c445ae4c07627257d4a.tar.gz
Configure Discourse SSO
We're creating a minimal User model that will be filled from SSO. We also configure Inflections so we can use SSO instead of Sso which looks weird for a module named after an acronym. Use Discourse as SSO: https://meta.discourse.org/t/using-discourse-as-a-sso-provider/32974
Diffstat (limited to 'app/models')
-rw-r--r--app/models/user.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/models/user.rb b/app/models/user.rb
new file mode 100644
index 0000000..f7e96a8
--- /dev/null
+++ b/app/models/user.rb
@@ -0,0 +1,4 @@
+class User < ApplicationRecord
+ has_many :agencies
+ has_many :agents, through: :agencies, source: :agent
+end