feat: Adds ability to edit out webhook URL of API Channel (#3013)
This commit is contained in:
@@ -1,2 +1,4 @@
|
||||
export const isPhoneE164 = value => !!value.match(/^\+[1-9]\d{1,14}$/);
|
||||
export const isPhoneE164OrEmpty = value => isPhoneE164(value) || value === '';
|
||||
export const shouldBeUrl = (value = '') =>
|
||||
value ? value.startsWith('http') : true;
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
import { shouldBeUrl } from '../Validators';
|
||||
|
||||
describe('#shouldBeUrl', () => {
|
||||
it('should return correct url', () => {
|
||||
expect(shouldBeUrl('http')).toEqual(true);
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user