File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,6 +5,6 @@ export interface Phone {
55 phone_number : string
66 created_at : string
77 updated_at : string
8- message_expiration_timeout : number
8+ message_expiration_seconds : number
99 messages_per_minute : number
1010}
Original file line number Diff line number Diff line change 163163 >
164164 </v-textarea >
165165 <v-text-field
166- v-model =" activePhone.message_expiration_timeout "
166+ v-model =" activePhone.message_expiration_seconds "
167167 outlined
168168 type =" number"
169169 dense
Original file line number Diff line number Diff line change @@ -290,8 +290,8 @@ export const actions = {
290290 await axios . put ( `/v1/phones` , {
291291 fcm_token : phone . fcm_token ,
292292 phone_number : phone . phone_number ,
293- message_expiration_timeout : parseInt (
294- phone . message_expiration_timeout . toString ( )
293+ message_expiration_seconds : parseInt (
294+ phone . message_expiration_seconds . toString ( )
295295 ) ,
296296 messages_per_minute : parseInt ( phone . messages_per_minute . toString ( ) ) ,
297297 } )
You can’t perform that action at this time.
0 commit comments