Commit 785408bff66219e62ed26c703ccca89d60c767f0

Authored by Josafá Filho
1 parent 42ffdd2d
Exists in master

Ajusta link para pasta com a documentação da API

Atualiza informações da API
docs/swagger.yaml
... ... @@ -91,6 +91,9 @@ definitions:
91 91 url:
92 92 type: string
93 93 description: URL de download da publicação
  94 + file_size:
  95 + type: number
  96 + description: Tamanho do arquivo de publicação em bytes
94 97 Error:
95 98 type: object
96 99 properties:
... ...
post-update.sh
  1 +#!/usr/bin/env bash
  2 +
1 3 cp config/wp-config-vagrant.php src/wp-config.php
2 4 cp config/htaccess-vagrant src/.htaccess
3 5 cp config/file-remote.php src/file-remote.php
... ... @@ -5,4 +7,4 @@ cp config/index-vagrant.php src/index.php
5 7 rm -f src/wp/index.php
6 8 ln -s wp/wp-admin src/wp-admin
7 9 ln -s wp/wp-includes src/wp-includes
8   -ln -s docs src/docs
9 10 \ No newline at end of file
  11 +ln -s ../docs docs
10 12 \ No newline at end of file
... ...
pre-update.sh
1 1 #!/usr/bin/env bash
  2 +
2 3 rm -rf src/wp-admin src/wp-includes src/*.php src/.htaccess src/docs
3 4 \ No newline at end of file
... ...