generated from security-union/yew-actix-template
-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Factor out media device query and selection (#112)
* factor out model::media_access::MediaAccess ...and tidy up AttendantsCommponent::create() * factor MediaDevicesList out of DeviceSelector component * cargo fmt * use AtomicBool instead of Cell<Bool> * cargo fmt * bug fix: was calling on_granted() when permission was denied. --------- Co-authored-by: Dario A Lencina-Talarico <darioalessandrolencina@gmail.com>
- Loading branch information
1 parent
443df43
commit 1ff8bf3
Showing
9 changed files
with
279 additions
and
146 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
pub mod attendants; | ||
pub mod device_permissions; | ||
pub mod device_selector; | ||
pub mod host; | ||
pub mod icons; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#![feature(future_join)] | ||
#![feature(once_cell)] | ||
|
||
mod components; | ||
mod constants; | ||
|
Oops, something went wrong.