Commits (2)
...@@ -13,8 +13,8 @@ import { AuthorService } from '../services/author.service'; ...@@ -13,8 +13,8 @@ import { AuthorService } from '../services/author.service';
}) })
export class SearchComponent implements OnInit { export class SearchComponent implements OnInit {
books = []; books:any={};
authors = []; authors:any={};
searchResult = null; searchResult = null;
// constructor() { } // constructor() { }
......
export const environment = { export const environment = {
production: true, production: false,
apiEndpoint: 'TO_BE_SPECIFIED', apiEndpoint: 'https://bookle-vu.eu-de.cf.appdomain.cloud/api',
auth: { auth: {
clientId: 'TO_BE_SPECIFIED', clientId: '483ce3cd-4a9b-4a42-b8c0-21c7b63813be',
clientSecret: 'TO_BE_SPECIFIED' clientSecret: 'fB1gU2hD3gN6dB8nK4bJ3xU7wX8fM6fR6sE3bI7hN0iS0sK6iE'
} }
}; };
\ No newline at end of file
...@@ -5,9 +5,9 @@ ...@@ -5,9 +5,9 @@
export const environment = { export const environment = {
production: false, production: false,
apiEndpoint: 'http://127.0.0.1:4001/api', apiEndpoint: 'https://bookle-vu.eu-de.cf.appdomain.cloud/api',
auth: { auth: {
clientId: 'default', clientId: '483ce3cd-4a9b-4a42-b8c0-21c7b63813be',
clientSecret: 'SECRET' clientSecret: 'fB1gU2hD3gN6dB8nK4bJ3xU7wX8fM6fR6sE3bI7hN0iS0sK6iE'
} }
}; };