Commit 4e3faad3 authored by Kim, Subin's avatar Kim, Subin
Browse files

getAll - moreFeeInfo 불러오기

parent 8087c9bc
...@@ -4,7 +4,7 @@ const getAll = async (req, res) => { ...@@ -4,7 +4,7 @@ const getAll = async (req, res) => {
try { try {
const info = await Cinema.findOne({ const info = await Cinema.findOne({
where: { id: 1 }, where: { id: 1 },
attributes: ['cinemaName', 'transportation', 'parking', 'address'] attributes: ['cinemaName', 'transportation', 'parking', 'address', 'moreFeeInfo']
}) })
return res.json(info) return res.json(info)
} catch (error) { } catch (error) {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment