import axios from "axios"; import { SurveyType } from "../types"; import baseUrl from "./baseUrl"; export const createSurvey = async (survey: SurveyType) => { const { data } = await axios.post(`${baseUrl}/surveys/create`, survey); return data; }; export const getSurvey = async (surveyId: string) => { const { data } = await axios.get(`${baseUrl}/surveys/${surveyId}/edit`); return data; }; export const ansSurvey = async (surveyId: string) => { const { data } = await axios.get(`${baseUrl}/surveys/${surveyId}`); return data; }; //동혁 export const getSurveys = async () => { const { data } = await axios.get(`${baseUrl}/surveys/`); return data; }; export const editSurvey = async (survey: SurveyType) => { const { data } = await axios.put( `${baseUrl}/surveys/${survey._id}/edit`, survey ); return data; }; export const resultSurvey = async (survey: SurveyType) => { const { data } = await axios.put( `${baseUrl}/surveys/${survey._id}/result`, survey ); return data; }; export const deleteSurvey = async (surveyId: string) => { const { data } = await axios.delete(`${baseUrl}/surveys/${surveyId}/delete`); return data; };