This commit is contained in:
@@ -1,7 +1,11 @@
|
|||||||
# Attachments specifications
|
# 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
|
## TODO
|
||||||
|
|
||||||
|
|
||||||
- Need core dlToken route for not just attachments
|
- 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
|
- 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
|
||||||
|
|
||||||
|
|||||||
@@ -292,7 +292,7 @@ ICON FONT - Going with Font Awesome 5.x SOLID FREE icons
|
|||||||
- Save (3.5'' diskette!?)
|
- Save (3.5'' diskette!?)
|
||||||
- Document attachments (two hardcover books back to back on an angle in 3d)
|
- Document attachments (two hardcover books back to back on an angle in 3d)
|
||||||
- Record history (analog clock face)
|
- 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)
|
- Print / report (inkjet printer)
|
||||||
- Duplicate (rabbit)
|
- Duplicate (rabbit)
|
||||||
- Plugin (puzzle piece)
|
- Plugin (puzzle piece)
|
||||||
|
|||||||
4
devdocs/specs/core-wiki.txt
Normal file
4
devdocs/specs/core-wiki.txt
Normal 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
|
||||||
|
|
||||||
@@ -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
|
- 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
|
- 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
|
DOCS / MANUAL
|
||||||
- Disable google fonts for manual / docs generator:
|
- Disable google fonts for manual / docs generator:
|
||||||
|
|||||||
@@ -9,14 +9,20 @@ namespace AyaNova.Biz
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public enum AyaType : int
|
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,
|
NoType = 0,
|
||||||
Global = 1,
|
Global = 1,
|
||||||
|
|
||||||
[Attachable]
|
[Attachable]
|
||||||
Widget = 2,
|
Widget = 2,//attachable, wikiable, reviewable
|
||||||
|
|
||||||
[Attachable]
|
[Attachable]
|
||||||
User = 3,
|
User = 3,//attachable, wikiable, reviewable
|
||||||
|
|
||||||
ServerState = 4,
|
ServerState = 4,
|
||||||
License = 5,
|
License = 5,
|
||||||
|
|||||||
Reference in New Issue
Block a user