Added show module which will eventually show DocDef.
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 1s
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 1s
This commit is contained in:
@@ -845,7 +845,7 @@ impl DocumentFile {
|
||||
mod document_files {
|
||||
use super::*;
|
||||
use crate::{
|
||||
action::{Addition, FieldType, Operand},
|
||||
action::{Addition, FieldType, Operand, Show},
|
||||
document::Clock,
|
||||
message::wrapper::Delete,
|
||||
name::{Name, Names},
|
||||
@@ -1005,7 +1005,7 @@ mod document_files {
|
||||
MsgAction::Addition(Addition::new(name.clone())),
|
||||
MsgAction::Delete(Delete::new(Query::internal())),
|
||||
MsgAction::Query(Query::new(name.clone())),
|
||||
MsgAction::Show,
|
||||
MsgAction::Show(Show::new(name.clone())),
|
||||
MsgAction::Update(Update::new(Query::internal())),
|
||||
];
|
||||
for msg_action in msg_actions.iter() {
|
||||
@@ -1057,7 +1057,7 @@ mod document_files {
|
||||
MsgAction::Create(DocDef::new(name.clone())),
|
||||
MsgAction::Delete(Delete::new(Query::new(alt.clone()))),
|
||||
MsgAction::Query(Query::internal().into()),
|
||||
MsgAction::Show,
|
||||
MsgAction::Show(Show::new(name.clone())),
|
||||
MsgAction::Update(Update::new(Query::internal())),
|
||||
];
|
||||
let mut msgs: HashMap<Uuid, MsgAction> = HashMap::new();
|
||||
|
||||
Reference in New Issue
Block a user