Changed UserAction to ClientAction.
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 1s

This commit is contained in:
2026-03-10 10:54:29 -04:00
parent 1684ab3367
commit e5c14d55cd
5 changed files with 20 additions and 20 deletions

View File

@@ -55,13 +55,13 @@ impl MoreThanText {
output
}
fn new_session() -> UserAction {
fn new_session() -> ClientAction {
Addition::new(Session::doc_names()[0].clone()).into()
}
fn recursive_message_request<UA>(&mut self, action: UA) -> Uuid
where
UA: Into<UserAction>,
UA: Into<ClientAction>,
{
match self.records(action) {
Ok(data) => {
@@ -100,7 +100,7 @@ impl MoreThanText {
pub fn records<UA>(&mut self, request: UA) -> Result<Records, MTTError>
where
UA: Into<UserAction>,
UA: Into<ClientAction>,
{
let req = request.into();
let (tx, rx) = channel();