diff options
| author | shashidharatd <shashidhara.td@huawei.com> | 2017-08-15 01:07:59 +0530 |
|---|---|---|
| committer | shashidharatd <shashidhara.td@huawei.com> | 2017-08-17 04:51:26 +0530 |
| commit | a94c715488d59405dd7e4d2b2d3253150bf960e5 (patch) | |
| tree | c76d554a6b6b238b30fb90a371a633e22ba11201 /generator | |
| parent | bc510e957033688dc311b8ef8fd215172af88b5d (diff) | |
Add meeting recording links in generator
Diffstat (limited to 'generator')
| -rw-r--r-- | generator/app.go | 17 | ||||
| -rw-r--r-- | generator/sig_readme.tmpl | 1 | ||||
| -rw-r--r-- | generator/wg_readme.tmpl | 1 |
3 files changed, 11 insertions, 8 deletions
diff --git a/generator/app.go b/generator/app.go index 63344131..99336c0d 100644 --- a/generator/app.go +++ b/generator/app.go @@ -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 diff --git a/generator/sig_readme.tmpl b/generator/sig_readme.tmpl index 54ee8d57..8e5605bf 100644 --- a/generator/sig_readme.tmpl +++ b/generator/sig_readme.tmpl @@ -8,6 +8,7 @@ {{- end }} Meeting notes and Agenda can be found [here]({{.MeetingArchiveURL}}). +Meeting recordings can be found [here]({{.MeetingRecordingsURL}}). ## Leads {{- range .Leads }} diff --git a/generator/wg_readme.tmpl b/generator/wg_readme.tmpl index 9a0144a6..4af37286 100644 --- a/generator/wg_readme.tmpl +++ b/generator/wg_readme.tmpl @@ -8,6 +8,7 @@ {{- end }} Meeting notes and Agenda can be found [here]({{.MeetingArchiveURL}}). +Meeting recordings can be found [here]({{.MeetingRecordingsURL}}). ## Organizers {{- range .Leads }} |
