Skip to content

Commit

Permalink
Arnab/lk fix (#776)
Browse files Browse the repository at this point in the history
* refactor: added code for joining livekit room for listeners (#731)

* feat: drop in livekit inplace of livepeer

* feat: added microphone

* feat: added mic

* feat: added access control

* feat: fixes for livekit API call

* feat: meta messages added for joining

* fix: add meta message for accept

* fix: fix meta message type

---------

Co-authored-by: Nilesh Gupta <[email protected]>
  • Loading branch information
arn4b and 0xNilesh authored Oct 12, 2023
1 parent d6e1607 commit 72a6cb2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/restapi/src/lib/space/acceptPromotionRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
SPACE_ACCEPT_REQUEST_TYPE,
SPACE_INVITE_ROLES,
} from '../payloads/constants';
import { META_ACTION } from '../types';
import { CHAT } from '../types';

export interface IAcceptPromotionRequestType {
signalData: any;
Expand Down Expand Up @@ -43,7 +43,7 @@ export async function acceptPromotionRequest(
env: this.env,
signer: this.signer,
// liveSpaceData: modifiedLiveSpaceData,
action: META_ACTION.PROMOTE_TO_SPEAKER,
action: CHAT.META.SPACE.SPEAKER.PRVILEGE,
});

// accept the promotion request
Expand Down

0 comments on commit 72a6cb2

Please sign in to comment.