This commit is contained in:
2020-02-27 00:27:06 +00:00
parent 9ea399e3f6
commit 060366e13d
5 changed files with 19 additions and 4 deletions

View File

@@ -1,7 +1,11 @@
# Attachments specifications
NOTE: This applies to all core business object types that are basically real world and have an id and a type (all are wikiable, attachable and reviewable) Not utility type objects like datalist etc
## TODO
- Need core dlToken route for not just attachments
- There should be a notification for ops if a file attachment is physically not found when it has a db record see Attachmentcontroller line 407

View File

@@ -292,7 +292,7 @@ ICON FONT - Going with Font Awesome 5.x SOLID FREE icons
- Save (3.5'' diskette!?)
- Document attachments (two hardcover books back to back on an angle in 3d)
- Record history (analog clock face)
- Follow up (schedule marker post-it note with a chain link overtop of it)
- Follow up "Review" (schedule marker post-it note with a chain link overtop of it)
- Print / report (inkjet printer)
- Duplicate (rabbit)
- Plugin (puzzle piece)

View File

@@ -0,0 +1,4 @@
# WIKI specifications
NOTE: This applies to all core business object types that are basically real world and have an id and a type (all are wikiable, attachable and reviewable) Not utility type objects like datalist etc

View File

@@ -93,7 +93,8 @@ DEVELOPMENT STREAMLINING
- I envision installing docker to a computer then issuing a single command to pull in all the requirements and launch vscode, the db server you name it
- This would then mean it would be safe to have a computer stolen or travel could just pick up a new one and get to work quickly
todo: Attachable attribute..do I need it? reflection is slow and maybe it's just easier to track it manually by comment in ayatype
- Can't use it at client
DOCS / MANUAL
- Disable google fonts for manual / docs generator:

View File

@@ -9,14 +9,20 @@ namespace AyaNova.Biz
/// </summary>
public enum AyaType : int
{
//Attachable objects can have attachments,
//wikiable objects can have a wiki
//reviewable objects can have a review which is basically the same as a Reminder but with an object attached (was follow up schedmarker in v7)
//Pretty much everything that represents some kind of real world object is wikiable or attachable as long as it has an ID and a type
//exceptions would be utility type objects like datalistview, formcustom etc that are not
NoType = 0,
Global = 1,
[Attachable]
Widget = 2,
Widget = 2,//attachable, wikiable, reviewable
[Attachable]
User = 3,
User = 3,//attachable, wikiable, reviewable
ServerState = 4,
License = 5,