mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
62719f3201
* Fix OAuth token, new request content-type, and more * better error messaging around invalid Curl opts * Make XFERINFOFUNCTION an optional option * Fix content-type change prompt and double quotes in prettify * Don't send Expect header on file upload * Remove dead code * Base64 tag * Fix HTML entities in URL clicks * Fix curl paste
16 lines
415 B
JavaScript
16 lines
415 B
JavaScript
import TimestampExtension from './timestamp-extension';
|
|
import UuidExtension from './uuid-extension';
|
|
import NowExtension from './now-extension';
|
|
import ResponseJsonPathExtension from './response-extension';
|
|
import Base64Extension from './base-64-extension';
|
|
|
|
export function all () {
|
|
return [
|
|
TimestampExtension,
|
|
UuidExtension,
|
|
NowExtension,
|
|
ResponseJsonPathExtension,
|
|
Base64Extension
|
|
];
|
|
}
|