mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
14 lines
339 B
JavaScript
14 lines
339 B
JavaScript
import { getToken } from "../../utils/common";
|
|
|
|
class tarifasClienteView{
|
|
|
|
constructor(domItem) {
|
|
this.csrf_token = document.querySelector('meta[name="csrf-token"]').content;
|
|
this.csrf_hash = document.querySelector('meta[name="csrf-hash"]').content;
|
|
this.token = getToken();
|
|
}
|
|
|
|
init() {
|
|
|
|
}
|
|
} |