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
material[.{{primary_colour}}-{{secondary_colour}}] | |
example: | |
material | |
material.indigo-pink | |
material.green-red |
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
// If using tag helpers | |
<c1-styles theme="material" /> | |
// If using html helpers | |
@Html.C1().Styles().Theme("material") |
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
public void ConfigureServices(IServiceCollection services) | |
{ | |
services | |
.AddSwaggerGen(c => | |
{ | |
c.OperationFilter<AddAuthorizationHeaderParameterOperationFilter>(); | |
}); | |
} | |
/// <summary> |
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
public void ConfigureServices(IServiceCollection services) | |
{ | |
// Other settings | |
services | |
.AddSwaggerGen(c => | |
{ | |
// Other settings | |
c.AddSecurityDefinition("oauth2", new OAuth2Scheme | |
{ | |
Type = "oauth2", |
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
var gist = function(userName, gistId){ | |
return 'https://gist.github.com/' + userName + '/' + gistId + '.js'; | |
} |
NewerOlder