mirror of
https://github.com/inaturalist/iNaturalistReactNative.git
synced 2026-04-19 06:23:12 -04:00
* Added basic navigation test for StandardCamera & SoundRecorder * Abstracted camera nav buttons and used in SoundRecorder * Show sounds in the MediaViewer * Added sounds to ObsEdit, w/ MediaViewer support * Ensure sounds get both uploaded and added to observations * Local sound deletion * Remote sound deletion * Rudimentary and deeply unperformative sound visualization Closes #869
10 lines
244 B
JavaScript
10 lines
244 B
JavaScript
import { define } from "factoria";
|
|
|
|
import soundFactory from "./RemoteSound";
|
|
|
|
export default define( "RemoteObservationSound", faker => ( {
|
|
id: faker.number.int( ),
|
|
sound: soundFactory( "RemoteSound" ),
|
|
uuid: faker.string.uuid( )
|
|
} ) );
|