show only relevant communiqués
This commit is contained in:
parent
b26893250c
commit
78e8db6e1d
|
@ -38,10 +38,13 @@ const RegistroComunicado = () => {
|
||||||
const [globalFilter, setGlobalFilter] = useState(null);
|
const [globalFilter, setGlobalFilter] = useState(null);
|
||||||
|
|
||||||
async function listaComunis() {
|
async function listaComunis() {
|
||||||
let comunicadosA = await fetch('http://localhost:4000/post/allPosts', { method: 'GET' });
|
let comunicadosResponse = await fetch('http://localhost:4000/post/allPosts', { method: 'GET' });
|
||||||
let comunicadosRes = await comunicadosA.json();
|
const comunicadosJson = await comunicadosResponse.json();
|
||||||
setComunicados(comunicadosRes.message);
|
const comunicadosCommunity = comunicadosJson.message.filter((comunicado) => {
|
||||||
console.log(comunicadosRes.message);
|
return comunicado.community_id === cookies.community_id;
|
||||||
|
})
|
||||||
|
setComunicados(comunicadosCommunity);
|
||||||
|
console.log(comunicadosCommunity);
|
||||||
}
|
}
|
||||||
|
|
||||||
const saveComunicado = () => {
|
const saveComunicado = () => {
|
||||||
|
|
Loading…
Reference in New Issue