mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
fix: settings improvements (#5547)
* fix: user workspace bloc changed * fix: use translate card cell style * fix: add getworkspacemember * fix: billing launch review * fix: disable time field * fix: member tooltip * fix: remove my account description * fix: punctuation * fix: filter workspace font * fix: cloud toggle * fix: minor adjustments * chore: disable cloud document search * fix: improve workspace name textfield * test: move billing test to cloud * fix: use cache over remote * fix: clippy and tests * chore: amend flowy tooltip * test: add pump and settle * test: integration test for local auth
This commit is contained in:
@ -231,6 +231,14 @@ pub trait UserCloudService: Send + Sync + 'static {
|
||||
FutureResult::new(async { Ok(vec![]) })
|
||||
}
|
||||
|
||||
fn get_workspace_member(
|
||||
&self,
|
||||
workspace_id: String,
|
||||
uid: i64,
|
||||
) -> FutureResult<WorkspaceMember, FlowyError> {
|
||||
FutureResult::new(async { Err(FlowyError::not_support()) })
|
||||
}
|
||||
|
||||
fn get_user_awareness_doc_state(
|
||||
&self,
|
||||
uid: i64,
|
||||
|
Reference in New Issue
Block a user