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
Christian Merten
haskell-gargantext
Commits
b0c373a2
Commit
b0c373a2
authored
Feb 28, 2024
by
Karen Konou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix share url API
parent
5742cfee
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
ShareURL.hs
src/Gargantext/API/Node/ShareURL.hs
+2
-2
No files found.
src/Gargantext/API/Node/ShareURL.hs
View file @
b0c373a2
...
@@ -7,7 +7,7 @@ import Data.Text
...
@@ -7,7 +7,7 @@ import Data.Text
import
Gargantext.Prelude
import
Gargantext.Prelude
import
Gargantext.API.Prelude
import
Gargantext.API.Prelude
import
Servant
import
Servant
import
Gargantext.Core.Types
(
NodeType
,
NodeId
)
import
Gargantext.Core.Types
(
NodeType
,
NodeId
,
unNodeId
)
import
Gargantext.Database.Prelude
(
HasConfig
(
hasConfig
),
CmdCommon
)
import
Gargantext.Database.Prelude
(
HasConfig
(
hasConfig
),
CmdCommon
)
import
Control.Lens.Getter
(
view
)
import
Control.Lens.Getter
(
view
)
import
Gargantext.Prelude.Config
(
gc_url
)
import
Gargantext.Prelude.Config
(
gc_url
)
...
@@ -33,4 +33,4 @@ getUrl nt id = do
...
@@ -33,4 +33,4 @@ getUrl nt id = do
Nothing
->
pure
"Invalid node ID"
Nothing
->
pure
"Invalid node ID"
Just
i
->
do
Just
i
->
do
url
<-
view
$
hasConfig
.
gc_url
url
<-
view
$
hasConfig
.
gc_url
pure
$
url
<>
"/#/share/"
<>
show
t
<>
"/"
<>
show
i
pure
$
url
<>
"/#/share/"
<>
show
t
<>
"/"
<>
show
(
unNodeId
i
)
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