-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Atualização do formulário de palestrante
- Removido o campo do SpeakerDeck e SlideShare - Reorganização da ordem dos campos - Implementação da estrutura de validação correta.
- Loading branch information
Showing
1 changed file
with
35 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,5 @@ | ||
name: Palestrante | ||
description: Use este template para cadastrar informações do palestrante. | ||
title: "[PALESTRANTE] " | ||
labels: ["palestrante"] | ||
assignees: [] | ||
|
||
body: | ||
- type: input | ||
|
@@ -11,84 +8,87 @@ body: | |
label: Nome Completo | ||
description: Seu nome completo. | ||
placeholder: "Nome Completo" | ||
#required: true | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: email | ||
attributes: | ||
label: E-mail | ||
description: Seu e-mail. | ||
placeholder: "[email protected]" | ||
#required: true | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: imagem | ||
attributes: | ||
label: Imagem | ||
description: Link para a foto do palestrante. | ||
placeholder: "link para a foto" | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: biografia | ||
attributes: | ||
label: Biografia | ||
description: Sua biografia. | ||
placeholder: "Lorem ipsum dolor sit amet, consectetur adipisicing elit..." | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: cidade | ||
attributes: | ||
label: Cidade | ||
description: Sua cidade e estado. | ||
placeholder: "Rio de Janeiro - RJ" | ||
#required: true | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: site | ||
attributes: | ||
label: Site e blog | ||
description: Link para o seu site ou blog (opcional). | ||
placeholder: "link para o site ou blog" | ||
#required: false | ||
validations: | ||
required: false | ||
|
||
- type: input | ||
id: instagram | ||
attributes: | ||
label: Instagram | ||
description: Link para o seu perfil no Instagram (opcional). | ||
placeholder: "https://www.instagram.com/usuario" | ||
#required: false | ||
validations: | ||
required: false | ||
|
||
- type: input | ||
id: x | ||
attributes: | ||
label: X | ||
description: Link para o seu perfil no X (opcional). | ||
placeholder: "https://x.com/usuario" | ||
#required: false | ||
validations: | ||
required: false | ||
|
||
- type: input | ||
id: github | ||
attributes: | ||
label: GitHub | ||
description: Link para o seu perfil no GitHub (opcional). | ||
placeholder: "https://github.com/usuario" | ||
#required: false | ||
validations: | ||
required: false | ||
|
||
- type: input | ||
id: linkedin | ||
attributes: | ||
label: LinkedIn | ||
description: Link para o seu perfil no LinkedIn (opcional). | ||
placeholder: "https://www.linkedin.com/in/usuario" | ||
#required: false | ||
|
||
- type: input | ||
id: speakerdeck | ||
attributes: | ||
label: SpeakerDeck e SlideShare | ||
description: Link para o seu perfil no SpeakerDeck ou SlideShare (opcional). | ||
placeholder: "https://speakerdeck.com/usuario" | ||
#required: false | ||
|
||
- type: input | ||
id: imagem | ||
attributes: | ||
label: Imagem | ||
description: Link para a foto do palestrante. | ||
placeholder: "link para a foto" | ||
#required: true | ||
|
||
- type: textarea | ||
id: biografia | ||
attributes: | ||
label: Biografia | ||
description: Sua biografia. | ||
placeholder: "Lorem ipsum dolor sit amet, consectetur adipisicing elit..." | ||
#required: false | ||
validations: | ||
required: false | ||
|