using Nancy.Metadata.Modules; using Nancy.Metadata.Swagger.Core; using Nancy.Metadata.Swagger.Fluent; namespace Sony.Filtr.AdminAPI.Modules.PublicData { public class SeasonMetadataModule : MetadataModule { public SeasonMetadataModule() { var tag = "Season"; Describe["GetSeasons"] = description => new SwaggerRouteMetadata(description).With(c => c.WithDescription("TODO", tag)); Describe["SetSpotifyReleasesSinglePlaylist"] = description => new SwaggerRouteMetadata(description).With(c => c.WithDescription("TODO", tag)); Describe["AddSeason"] = description => new SwaggerRouteMetadata(description).With(c => c.WithDescription("TODO", tag)); Describe["GetSingleSeason"] = description => new SwaggerRouteMetadata(description).With(c => c.WithDescription("TODO", tag)); Describe["UpdateSeason"] = description => new SwaggerRouteMetadata(description).With(c => c.WithDescription("TODO", tag)); Describe["DeleteSeason"] = description => new SwaggerRouteMetadata(description).With(c => c.WithDescription("TODO", tag)); Describe["GetActiveSeason"] = description => new SwaggerRouteMetadata(description).With(c => c.WithDescription("TODO", tag)); Describe["SetActiveSeason"] = description => new SwaggerRouteMetadata(description).With(c => c.WithDescription("TODO", tag)); Describe["GetSeasonHeaderBackgroundImage"] = description => new SwaggerRouteMetadata(description).With(c => c.WithDescription("TODO", tag)); Describe["GetSeasonHeaderBackgroundImageThumbnail"] = description => new SwaggerRouteMetadata(description).With(c => c.WithDescription("TODO", tag)); Describe["SetSeasonHeaderBackgroundImage"] = description => new SwaggerRouteMetadata(description).With(c => c.WithDescription("TODO", tag)); Describe["GetSeasonHeaderStartBackgroundImage"] = description => new SwaggerRouteMetadata(description).With(c => c.WithDescription("TODO", tag)); Describe["GetSeasonHeaderStartBackgroundImageThumbnail"] = description => new SwaggerRouteMetadata(description).With(c => c.WithDescription("TODO", tag)); Describe["SetSeasonHeaderStartBackgroundImage"] = description => new SwaggerRouteMetadata(description).With(c => c.WithDescription("TODO", tag)); Describe["GetSeasonHeaderPlaylistBackgroundImage"] = description => new SwaggerRouteMetadata(description).With(c => c.WithDescription("TODO", tag)); Describe["GetSeasonHeaderPlaylistBackgroundImageThumbnail"] = description => new SwaggerRouteMetadata(description).With(c => c.WithDescription("TODO", tag)); Describe["SetSeasonHeaderPlaylistBackgroundImage"] = description => new SwaggerRouteMetadata(description).With(c => c.WithDescription("TODO", tag)); Describe["GetSeasonHeaderReleasesBackgroundImage"] = description => new SwaggerRouteMetadata(description).With(c => c.WithDescription("TODO", tag)); Describe["GetSeasonHeaderReleasesBackgroundImageThumbnail"] = description => new SwaggerRouteMetadata(description).With(c => c.WithDescription("TODO", tag)); Describe["SetSeasonHeaderReleasesBackgroundImage"] = description => new SwaggerRouteMetadata(description).With(c => c.WithDescription("TODO", tag)); Describe["GetSeasonHeaderHeaderPlaylistBackgroundImage"] = description => new SwaggerRouteMetadata(description).With(c => c.WithDescription("TODO", tag)); Describe["GetSeasonHeaderHeaderPlaylistBackgroundImageThumbnail"] = description => new SwaggerRouteMetadata(description).With(c => c.WithDescription("TODO", tag)); Describe["SetSeasonHeaderHeaderPlaylistBackgroundImage"] = description => new SwaggerRouteMetadata(description).With(c => c.WithDescription("TODO", tag)); } } }