mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 18:51:41 +09:00
커스텀 알림의 타입리스트를 확인하고 해당 알림을 삭제할 수 있도록 개선
This commit is contained in:
parent
de7213bb22
commit
f702b6c7d6
9 changed files with 138 additions and 0 deletions
8
modules/ncenterlite/queries/deleteNotifyType.xml
Normal file
8
modules/ncenterlite/queries/deleteNotifyType.xml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<query id="deleteNotifyType" action="delete">
|
||||
<tables>
|
||||
<table name="ncenterlite_notify_type" />
|
||||
</tables>
|
||||
<conditions>
|
||||
<condition operation="equal" column="notify_type_srl" var="notify_type_srl" filter="number" notnull="notnull" />
|
||||
</conditions>
|
||||
</query>
|
||||
15
modules/ncenterlite/queries/getNotifyTypeAdminList.xml
Normal file
15
modules/ncenterlite/queries/getNotifyTypeAdminList.xml
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<query id="getNotifyTypeAdminList" action="select">
|
||||
<tables>
|
||||
<table name="ncenterlite_notify_type" />
|
||||
</tables>
|
||||
|
||||
<columns>
|
||||
<column name="*" />
|
||||
</columns>
|
||||
<navigation>
|
||||
<index default="notify_type_srl" var="list_order" order="desc" />
|
||||
<list_count var="list_count" default="20" />
|
||||
<page_count var="page_count" default="10" />
|
||||
<page var="page" default="1" />
|
||||
</navigation>
|
||||
</query>
|
||||
Loading…
Add table
Add a link
Reference in a new issue