Skip to content

Commit

Permalink
Atualizando rotas e visões para trabalhar com o novo método `resposta…
Browse files Browse the repository at this point in the history
….lmht`.
  • Loading branch information
leonelsanchesdasilva committed Jan 15, 2024
1 parent 4a00dbf commit 3d42b57
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion interface-linha-comando/gerar/gerador-rotas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export class GeradorRotas {
}

return `liquido.rotaGet(funcao(requisicao, resposta) {\n` +
`${" ".repeat(this.indentacao)}resposta.lmht({\n` +
`${" ".repeat(this.indentacao)}resposta.lmht("detalhes", {\n` +
`${" ".repeat(this.indentacao * 2)}${dadosTestes.reduce(
(acumulador, elemento) => acumulador + ', ' + elemento
)}\n` +
Expand Down
4 changes: 2 additions & 2 deletions interface-linha-comando/gerar/gerador-visoes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ export class GeradorVisoes {

const listaPropriedades: string[] = [];
for (const propriedade of declaracaoModelo.propriedades) {
listaPropriedades.push(" ".repeat(this.indentacao * 3) + `<termo>${propriedade.nome.lexema}</termo>`);
listaPropriedades.push(" ".repeat(this.indentacao * 3) + `<definição>{{${propriedade.nome.lexema}}}</definição>`);
listaPropriedades.push(" ".repeat(this.indentacao * 3) + `<divisão>${propriedade.nome.lexema}</divisão>`);
listaPropriedades.push(" ".repeat(this.indentacao * 3) + `<divisão>{{${propriedade.nome.lexema}}}</divisão>`);
}

const relacaoPropriedades = `${" ".repeat(this.indentacao * 2)}<lista-definições>\n` +
Expand Down

0 comments on commit 3d42b57

Please sign in to comment.