I'm trying to write an ASP.NET MVC application where user privilege is based upon points rather than by a hard-coded role per se. I've tried researching authorization and membership providers but all the information I find points back to role based authentication which isn't really part of my model.
While writing this question I'm wondering if I'm even researching the right things. Would this be a custom role-provider? Does such a thing exist? It suddenly occurs to me that having a custom role provider which checks the user's points to determine if they're in a particular role or not might be the simplest way to go but I have no idea of the keywords I need to use with relation to ASP.NET MVC to find the right information.
What is the best way to achieve this goal?