Implement scene invitation and membership controls
This commit is contained in:
parent
ecf56729b0
commit
d3707f30e3
49 changed files with 2603 additions and 462 deletions
|
@ -1,5 +1,6 @@
|
|||
import {makeAutoObservable} from 'mobx'
|
||||
import {RootStoreModel} from './root-store'
|
||||
import {Declaration} from './_common'
|
||||
|
||||
interface Response {
|
||||
data: {
|
||||
|
@ -9,6 +10,7 @@ interface Response {
|
|||
export type ResponseSuggestedActor = {
|
||||
did: string
|
||||
handle: string
|
||||
declaration: Declaration
|
||||
displayName?: string
|
||||
description?: string
|
||||
createdAt?: string
|
||||
|
@ -109,7 +111,6 @@ export class SuggestedActorsViewModel {
|
|||
for (const item of res.data.suggestions) {
|
||||
this._append({
|
||||
_reactKey: `item-${counter++}`,
|
||||
description: 'Just another cool person using Bluesky',
|
||||
...item,
|
||||
})
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue