我有两个角色:
我希望每个角色的用户只能使用自己的表单登录,例如:具有admin角色的用户只能使用此URL登录:insert into table1(id1, col1, col2)
select sequence1.nextval, 'VAL1', 'VAL2'
from dual
where not exists (select 1 from table1 where col1 = 'AMIN')
我无法找到相关的任何文档。有什么解决方案吗?感谢
答案 0 :(得分:0)
您可能需要查看本文“自定义设计以支持多租户身份验证”http://climber2002.github.io/blog/2015/03/29/customize-devise-to-support-subdomain-authentication/