Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
DDA
dda-wizard
Commits
5c967083
Commit
5c967083
authored
May 16, 2022
by
Fischer, Tim
Browse files
Fixed old reference
parent
09209ba0
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/org/gesis/dda/wizard/web/rest/TemplateResource.java
View file @
5c967083
...
...
@@ -78,8 +78,8 @@ public class TemplateResource {
bundlesSource
.
setOwner
(
userRepository
.
findOneByLogin
(
SecurityUtils
.
getCurrentUserLogin
()).
get
());
bundlesSource
.
setBundlesSourceState
(
BundlesSourceState
.
UNPROCESSED
);
bundlesSource
.
setType
(
BundlesSourceType
.
EXCEL_SPREADSHEET
);
bundlesSource
.
setReference
(
"excel-database-"
+
result
.
getId
());
bundlesSource
.
setData
(
"excel-database-"
+
result
.
getId
());
bundlesSource
.
setReference
(
Long
.
toString
(
result
.
getId
())
)
;
bundlesSource
.
setData
(
Long
.
toString
(
result
.
getId
())
)
;
BundlesSource
resultBundlesSource
=
bundlesSourceRepository
.
save
(
bundlesSource
);
result
.
setBundlesSource
(
resultBundlesSource
);
...
...
Write
Preview
Supports
Markdown
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