[ 
https://issues.apache.org/jira/browse/KYLIN-4066?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16908082#comment-16908082
 ] 

ASF subversion and git services commented on KYLIN-4066:
--------------------------------------------------------

Commit 4a30ba4f373ee13286e11fb1ef5e91002866caf1 in kylin's branch 
refs/heads/2.6.x from langdamao
[ https://gitbox.apache.org/repos/asf?p=kylin.git;h=4a30ba4 ]

[KYLIN-4066] Fix No planner for not ROLE_ADMIN user

Signed-off-by: langdamao <[email protected]>


> No planner for not ROLE_ADMIN user on WebSite
> ---------------------------------------------
>
>                 Key: KYLIN-4066
>                 URL: https://issues.apache.org/jira/browse/KYLIN-4066
>             Project: Kylin
>          Issue Type: Bug
>          Components: Website
>    Affects Versions: v2.6.1
>         Environment: macOs 
>            Reporter: langdamao
>            Priority: Major
>              Labels: easyfix
>             Fix For: v2.6.4
>
>
> There is no planner page for none ROLE_ADMIN user ,even though he has ADMIN 
> access for the project.
> I found in webapp/app/partials/cubes/cube_detail.html line44
> {code:java}
> <li class="{{cube.visiblePage=='planner'? 'active':''}}" 
> ng-if="(userService.hasRole('ROLE_ADMIN') || hasPermission(cube, 
> permissions.ADMINISTRATION.mask)) && isShowCubeplanner"> <a href="" 
> ng-click="cube.visiblePage='planner';getCubePlanner(cube);">Planner</a> </li>
> {code}
> but other place the hasPermission function use as
> {code:java}
> hasPermission('cube',cube, permissions.ADMINISTRATION.mask) 
> {code}
> the function hasPermission is defined in webapp/app/js/controllers/page.js 
> line100
> {code:java}
> $scope.hasPermission = function (accessType, entity){
> ...
> if (accessType === 'cube') {
>   project = entity.project
> } else if (accessType === 'project') {
>   project = entity && entity.name || entity.selectedProject
> } else if (accessType === 'model') {
>   project =  ProjectModel.getProjectByCubeModel(entity.name)
> }
> ...
> }{code}
> I guess whether it's cause by no param of accessType.



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

Reply via email to