mirror of
https://github.com/inaturalist/iNaturalistReactNative.git
synced 2026-05-05 14:15:27 -04:00
* Sound model; refactor for basic sound creation and playback * Fetch sound attribution and license_code fields
9 lines
224 B
JavaScript
9 lines
224 B
JavaScript
import { define } from "factoria";
|
|
|
|
export default define( "LocalSound", faker => ( {
|
|
id: faker.number.int( ),
|
|
attribution: faker.lorem.sentence( ),
|
|
licenseCode: "cc-by-nc",
|
|
file_url: faker.system.filePath( )
|
|
} ) );
|