Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
haskell-gargantext
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Grégoire Locqueville
haskell-gargantext
Commits
33284fc1
Commit
33284fc1
authored
Oct 09, 2023
by
Alexandre Delanoë
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/adinapoli/issue-273' into dev
parents
4427590d
bebffe49
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
3 deletions
+6
-3
Node.hs
src/Gargantext/API/GraphQL/Node.hs
+3
-1
TreeFirstLevel.hs
src/Gargantext/API/GraphQL/TreeFirstLevel.hs
+3
-1
UserInfo.hs
src/Gargantext/API/GraphQL/UserInfo.hs
+0
-1
No files found.
src/Gargantext/API/GraphQL/Node.hs
View file @
33284fc1
...
...
@@ -56,7 +56,9 @@ resolveNodes
->
NodeArgs
->
GqlM
e
env
[
Node
]
resolveNodes
autUser
mgr
NodeArgs
{
node_id
}
=
withPolicy
autUser
mgr
(
nodeChecks
(
NodeId
node_id
))
$
dbNodes
node_id
-- FIXME(adn) We should have a way to enforce the access policy on
-- the public or public folders, instead of using 'alwaysAllow'.
withPolicy
autUser
mgr
alwaysAllow
$
dbNodes
node_id
resolveNodesCorpus
::
(
CmdCommon
env
)
...
...
src/Gargantext/API/GraphQL/TreeFirstLevel.hs
View file @
33284fc1
...
...
@@ -60,7 +60,9 @@ resolveTree :: (CmdCommon env)
->
TreeArgs
->
GqlM
e
env
(
TreeFirstLevel
(
GqlM
e
env
))
resolveTree
autUser
mgr
TreeArgs
{
root_id
}
=
withPolicy
autUser
mgr
(
nodeChecks
(
NodeId
root_id
))
$
dbTree
root_id
-- FIXME(adn) We should have a way to enforce the access policy on
-- the public or public folders, instead of using 'alwaysAllow'.
withPolicy
autUser
mgr
alwaysAllow
$
dbTree
root_id
dbTree
::
(
CmdCommon
env
)
=>
Int
->
GqlM
e
env
(
TreeFirstLevel
(
GqlM
e
env
))
...
...
src/Gargantext/API/GraphQL/UserInfo.hs
View file @
33284fc1
...
...
@@ -49,7 +49,6 @@ import Gargantext.API.GraphQL.Types
import
Gargantext.API.Admin.Auth.Types
hiding
(
Valid
)
import
Gargantext.API.Auth.PolicyCheck
import
Gargantext.API.GraphQL.PolicyCheck
-- import Gargantext.Database.Admin.Types.Node
data
UserInfo
=
UserInfo
{
ui_id
::
Int
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment