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
anis
anis-client
Commits
7a280c9f
Commit
7a280c9f
authored
Sep 03, 2019
by
Tifenn Guillas
Browse files
Merge branch 'develop' into 55-design-selectbox-output
parents
ac262782
d3d872f5
Changes
8
Hide whitespace changes
Inline
Side-by-side
src/app/detail/store/detail.service.ts
View file @
7a280c9f
...
...
@@ -5,7 +5,7 @@ import { environment } from '../../../environments/environment';
@
Injectable
()
export
class
DetailService
{
private
API_PATH
:
string
=
environment
.
apiUrl
+
'
/search
'
;
private
API_PATH
:
string
=
environment
.
apiUrl
+
'
/search
/
'
+
environment
.
instanceName
;
constructor
(
private
http
:
HttpClient
)
{
}
...
...
src/app/metamodel/services/attribute.service.ts
View file @
7a280c9f
...
...
@@ -6,7 +6,7 @@ import { environment } from '../../../environments/environment';
@
Injectable
()
export
class
AttributeService
{
private
API_PATH
:
string
=
environment
.
apiUrl
+
'
/metadata
'
;
private
API_PATH
:
string
=
environment
.
apiUrl
+
'
/metadata
/
'
+
environment
.
instanceName
;
constructor
(
private
http
:
HttpClient
)
{
}
...
...
src/app/metamodel/services/criteria.service.ts
View file @
7a280c9f
...
...
@@ -6,7 +6,7 @@ import { environment } from '../../../environments/environment';
@
Injectable
()
export
class
CriteriaService
{
private
API_PATH
:
string
=
environment
.
apiUrl
+
'
/metadata
'
;
private
API_PATH
:
string
=
environment
.
apiUrl
+
'
/metadata
/
'
+
environment
.
instanceName
;
constructor
(
private
http
:
HttpClient
)
{
}
...
...
src/app/metamodel/services/dataset.service.ts
View file @
7a280c9f
...
...
@@ -7,7 +7,7 @@ import { environment } from '../../../environments/environment';
@
Injectable
()
export
class
DatasetService
{
private
API_PATH
:
string
=
environment
.
apiUrl
+
'
/metadata
'
;
private
API_PATH
:
string
=
environment
.
apiUrl
+
'
/metadata
/
'
+
environment
.
instanceName
;
constructor
(
private
http
:
HttpClient
)
{
}
...
...
src/app/metamodel/services/output.service.ts
View file @
7a280c9f
...
...
@@ -7,7 +7,7 @@ import { environment } from '../../../environments/environment';
@
Injectable
()
export
class
OutputService
{
private
API_PATH
:
string
=
environment
.
apiUrl
+
'
/metadata
'
;
private
API_PATH
:
string
=
environment
.
apiUrl
+
'
/metadata
/
'
+
environment
.
instanceName
;
constructor
(
private
http
:
HttpClient
)
{
}
...
...
src/app/search/store/search.service.ts
View file @
7a280c9f
...
...
@@ -6,7 +6,7 @@ import { environment } from '../../../environments/environment';
@
Injectable
()
export
class
SearchService
{
private
API_PATH
:
string
=
environment
.
apiUrl
+
'
/search
'
;
private
API_PATH
:
string
=
environment
.
apiUrl
+
'
/search
/
'
+
environment
.
instanceName
;
constructor
(
private
http
:
HttpClient
)
{
}
...
...
src/environments/environment.prod.ts
View file @
7a280c9f
export
const
environment
=
{
production
:
true
,
apiUrl
:
'
https://anis-dev.lam.fr
'
production
:
true
,
apiUrl
:
'
https://anis-dev.lam.fr
'
,
instanceName
:
'
default
'
};
src/environments/environment.ts
View file @
7a280c9f
...
...
@@ -5,5 +5,6 @@
export
const
environment
=
{
production
:
false
,
apiUrl
:
'
http://localhost:8080
'
apiUrl
:
'
http://localhost:8080
'
,
instanceName
:
'
default
'
};
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