Skip to content

Commit

Permalink
Add meeting recording links in generator
Browse files Browse the repository at this point in the history
  • Loading branch information
shashidharatd committed Aug 16, 2017
1 parent bc510e9 commit a94c715
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
17 changes: 9 additions & 8 deletions generator/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,15 @@ type Contact struct {

// Group represents either a Special Interest Group (SIG) or a Working Group (WG)
type Group struct {
Name string
Dir string
MissionStatement string `yaml:"mission_statement"`
Leads []Lead
Meetings []Meeting
MeetingURL string `yaml:"meeting_url"`
MeetingArchiveURL string `yaml:"meeting_archive_url"`
Contact Contact
Name string
Dir string
MissionStatement string `yaml:"mission_statement"`
Leads []Lead
Meetings []Meeting
MeetingURL string `yaml:"meeting_url"`
MeetingArchiveURL string `yaml:"meeting_archive_url"`
MeetingRecordingsURL string `yaml:"meeting_recordings_url"`
Contact Contact
}

// DirName returns the directory that a group's documentation will be
Expand Down
1 change: 1 addition & 0 deletions generator/sig_readme.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
{{- end }}

Meeting notes and Agenda can be found [here]({{.MeetingArchiveURL}}).
Meeting recordings can be found [here]({{.MeetingRecordingsURL}}).

## Leads
{{- range .Leads }}
Expand Down
1 change: 1 addition & 0 deletions generator/wg_readme.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
{{- end }}

Meeting notes and Agenda can be found [here]({{.MeetingArchiveURL}}).
Meeting recordings can be found [here]({{.MeetingRecordingsURL}}).

## Organizers
{{- range .Leads }}
Expand Down

0 comments on commit a94c715

Please sign in to comment.