Skip to content
Rick Donalson edited this page Jul 9, 2017 · 4 revisions

Welcome to the General-Testing wiki!

This is a hybrid application with MVC5 and Angular 2 with an OData Api. Regular MVC Controllers limit access to the CRUD forms with the Authorized attribute The OData Api controller is protected in the same manner. All of the Angular 2 items are in the Areas -> ItemDetail -> InitialAmount -> tsScripts folder. The output is placed in the adjacent Scripts folders

For example the IdHome Controller is hit one time when first accessing the ItemDetail section:

[Authorize]
public class IdHomeController : Controller
{
    // GET: ItemDetail/IdHome
    public ActionResult Index()
    {
        return View();
    }
}  

Then you're in it's NG2 SPA.
The same for InitialAmount & Tester Controllers

Login Instructions: Create your own login by registering

After logging go to “Item Detail” and then “Initial Amount”. Once there create some records, then you can edit or delete them.

Clone this wiki locally