Changed UserAction to ClientAction.
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:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user