首页 > 其他 > 详细

Liferay 6.2 改造系列之二十:修改默认添加用户权限及用户是否拥有个人站点的配置

时间:2016-08-19 19:11:31      阅读:358      评论:0      收藏:0      [点我收藏+]

1、修改默认添加用户权限为User,而非Powers User:

在/portal-master/portal-impl/src/portal.properties文件中有如下配置:

#
# Input a list of default role names separated by \n characters that are
# associated with newly created users.
#
admin.default.role.names=Power User\nUser

修改为:

#
# Input a list of default role names separated by \n characters that are
# associated with newly created users.
#
admin.default.role.names=User

2、修改默认拥有个人站点的用户权限为Powers User,而非User:

在/portal-master/portal-impl/src/portal.properties文件中有如下配置:

#
    # Set this to true if users must have the Power User role to have private
    # pages.
    #
    layout.user.private.layouts.power.user.required=false
……
    #
    # Set this to true if users must have the Power User role to have public
    # pages.
    #
    layout.user.public.layouts.power.user.required=false

修改为:

 #
    # Set this to true if users must have the Power User role to have private
    # pages.
    #
    layout.user.private.layouts.power.user.required=true
……
    #
    # Set this to true if users must have the Power User role to have public
    # pages.
    #
    layout.user.public.layouts.power.user.required=true

  

Liferay 6.2 改造系列之二十:修改默认添加用户权限及用户是否拥有个人站点的配置

原文:http://www.cnblogs.com/luoruiyuan/p/5788615.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!