Implement scene invitation and membership controls

This commit is contained in:
Paul Frazee 2022-11-10 16:30:14 -06:00
parent ecf56729b0
commit d3707f30e3
49 changed files with 2603 additions and 462 deletions

View file

@ -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,
})
}