Created
January 18, 2020 18:24
-
-
Save kasunkv/d588f99db221e6f12ab4eba3629c5709 to your computer and use it in GitHub Desktop.
FeatureGate attribute with RequirementType
This file contains hidden or 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
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