I am trying to build an intranet where thousands of employees could create,edit and publish documents to the site.
These documents will be fairly simple (possibly one rich text field and a few other simpler fields).
I want to treat them as Umbraco back-end documents (rather than say data in separate SQL tables) so they can be included in partial views.
There will be other, more complex documents but these will be managed by a smaller number of back-end users, so that is fine.
I don't believe it is correct to treat the thousands of employees as users as I have read this will cause performance issues.
Therefore, before giving up, my last thought - suggested by others - is to create them as members, create a few front end pages that include forms, and they then submit these forms to a new controller that can check their membership and use the API to create, edit and/or publish the document submitted,
They should only be able to edit documents created by themselves, so the controller would need to know who the logged in member is (and compare that to the membership id I would store on all documents as creator).
- Is this possible? Is it ok, or would it affect performance/security?
- If it is possible, can I just upload controllers and views to the App_Code folder without compiling and uploading dlls etc?
- Finally, I believe it is possible to authenticate members based on their Windows (Active Directory) log in?
Sorry for asking so many questions and many thanks to anyone who can help.