Skip to content

Instantly share code, notes, and snippets.

@kasunkv
Created January 18, 2020 18:24
Show Gist options
  • Save kasunkv/d588f99db221e6f12ab4eba3629c5709 to your computer and use it in GitHub Desktop.
Save kasunkv/d588f99db221e6f12ab4eba3629c5709 to your computer and use it in GitHub Desktop.
FeatureGate attribute with RequirementType
using Microsoft.FeatureManagement.Mvc;
namespace MusicStore.Web.Controllers
{
public class HomeController : Controller
{
...
[FeatureGate(RequirementType.All, Features.Promotions, Features.PromotionDiscounts)]
public async Task<IActionResult> Promotions()
{
var promoAlbums = await _albumService.PromotionalAlbumsAsync();
return View(promoAlbums);
}
...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment