Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Open
ngx-enaio
Commits
42499094
Commit
42499094
authored
Sep 08, 2021
by
Ulrich Wohlfeil
💬
Browse files
Bugfix
parent
5f092af0
Changes
3
Hide whitespace changes
Inline
Side-by-side
package.json
View file @
42499094
{
"name"
:
"ngx-enaio"
,
"version"
:
"11.0.
6
"
,
"version"
:
"11.0.
7
"
,
"description"
:
"An Angular layer for the enaio rest services "
,
"author"
:
"https://github.com/OPTIMALSYSTEMS/ngx-enaio/graphs/contributors"
,
"scripts"
:
{
...
...
projects/ngx-enaio/package.json
View file @
42499094
{
"name"
:
"ngx-enaio"
,
"version"
:
"11.0.
6
"
,
"version"
:
"11.0.
7
"
,
"description"
:
"An Angular layer for the enaio rest services "
,
"keywords"
:
[
"enaio"
,
"Optimal Systems"
,
"ECMind"
,
"angular"
],
"homepage"
:
"https://gitlab.ecmind.ch/open/ngx-enaio"
,
...
...
projects/ngx-enaio/src/lib/services/enaio-dms.service.ts
View file @
42499094
...
...
@@ -130,8 +130,6 @@ export class EnaioDmsService {
options
?:
EnaioDmsUpdateOptions
,
pathPrefix
=
'
/
'
):
Observable
<
EnaioDmsResult
>
{
const
headers
=
new
HttpHeaders
().
set
(
'
Content-Type
'
,
'
application/json
'
);
const
formData
=
new
FormData
();
formData
.
append
(
'
data
'
,
JSON
.
stringify
(
data
));
...
...
@@ -142,7 +140,6 @@ export class EnaioDmsService {
}
return
this
.
http
.
post
<
EnaioDmsResult
>
(
pathPrefix
+
'
dms/objects/
'
+
objectId
,
formData
,
{
headers
,
params
:
options
as
any
,
});
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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