Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Sign in
Toggle navigation
Open sidebar
w.pan
bookle
Compare Revisions
db9540942e5b8a731f2e33e688219439885cf0fc...3e369b160f7d5e2915c3a7b6d219341be2be914c
Commits (2)
search properties
· 543b0dda
Xiaoyu Yang
authored
Feb 03, 2019
543b0dda
environment
· 3e369b16
Xiaoyu Yang
authored
Feb 03, 2019
3e369b16
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
10 deletions
+10
-10
src/app/search/search.component.ts
src/app/search/search.component.ts
+2
-2
src/environments/environment.prod.ts
src/environments/environment.prod.ts
+5
-5
src/environments/environment.ts
src/environments/environment.ts
+3
-3
No files found.
src/app/search/search.component.ts
View file @
3e369b16
...
...
@@ -13,8 +13,8 @@ import { AuthorService } from '../services/author.service';
})
export
class
SearchComponent
implements
OnInit
{
books
=
[]
;
authors
=
[]
;
books
:
any
=
{}
;
authors
:
any
=
{}
;
searchResult
=
null
;
// constructor() { }
...
...
src/environments/environment.prod.ts
View file @
3e369b16
export
const
environment
=
{
production
:
tru
e
,
apiEndpoint
:
'
TO_BE_SPECIFIED
'
,
production
:
fals
e
,
apiEndpoint
:
'
https://bookle-vu.eu-de.cf.appdomain.cloud/api
'
,
auth
:
{
clientId
:
'
TO_BE_SPECIFIED
'
,
clientSecret
:
'
TO_BE_SPECIFIED
'
clientId
:
'
483ce3cd-4a9b-4a42-b8c0-21c7b63813be
'
,
clientSecret
:
'
fB1gU2hD3gN6dB8nK4bJ3xU7wX8fM6fR6sE3bI7hN0iS0sK6iE
'
}
};
\ No newline at end of file
src/environments/environment.ts
View file @
3e369b16
...
...
@@ -5,9 +5,9 @@
export
const
environment
=
{
production
:
false
,
apiEndpoint
:
'
http://
127.0.0.1:4001
/api
'
,
apiEndpoint
:
'
http
s
://
bookle-vu.eu-de.cf.appdomain.cloud
/api
'
,
auth
:
{
clientId
:
'
default
'
,
clientSecret
:
'
SECRET
'
clientId
:
'
483ce3cd-4a9b-4a42-b8c0-21c7b63813be
'
,
clientSecret
:
'
fB1gU2hD3gN6dB8nK4bJ3xU7wX8fM6fR6sE3bI7hN0iS0sK6iE
'
}
};