Merge branch 'terms-and-conditions-link' into 'development'

update terms and conditions file and link

See merge request saburly/wiaas/new-wiaas!62
This commit was merged in pull request #62.
This commit is contained in:
Almira
2018-11-06 15:17:21 +00:00
3 changed files with 2 additions and 1 deletions

View File

@@ -77,6 +77,7 @@ WORKDIR /var/www/html
RUN ln -s ../html api
COPY docker/php/.htaccess /var/www/html/
COPY docker/backend/TaC.pdf /var/www/html/
RUN chown -R www-data:www-data /var/www/html

BIN
docker/backend/TaC.pdf Normal file

Binary file not shown.

View File

@@ -8,7 +8,7 @@ class TermsContainer extends Component {
render() {
return (
<div>
<a target="_blank" className="terms-link" href={`${API_SERVER}/terms/api/pdfTerms`}>{termsTexts.labels.TERMS_AND_CONDITIONS}</a>
<a target="_blank" className="terms-link" href={`${API_SERVER}/TaC.pdf`}>{termsTexts.labels.TERMS_AND_CONDITIONS}</a>
</div>
);