Advertisement
Guest User

routes.xml

a guest
Jul 22nd, 2015
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 11.56 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <data>
  3.     <routes>
  4.        
  5.         <!-- UCP LOGIN -->
  6.         <route>
  7.             <method>GET</method>
  8.             <url>/</url>
  9.             <target>AuthController@index</target>
  10.         </route>
  11.         <route>
  12.             <method>GET</method>
  13.             <url>/auth/login</url>
  14.             <target>AuthController@index</target>
  15.         </route>
  16.         <route>
  17.             <method>GET</method>
  18.             <url>/auth/logout</url>
  19.             <target>AuthController@logout</target>
  20.         </route>
  21.         <route>
  22.             <method>POST</method>
  23.             <url>/auth/login</url>
  24.             <target>AuthController@postLogin</target>
  25.         </route>
  26.         <route>
  27.             <method>GET</method>
  28.             <url>/auth/password/reset</url>
  29.             <target>AuthController@reset</target>
  30.         </route>
  31.         <route>
  32.             <method>POST</method>
  33.             <url>/auth/password/reset</url>
  34.             <target>AuthController@postReset</target>
  35.         </route>
  36.        
  37.         <!-- Startseite -->
  38.         <route>
  39.             <method>GET</method>
  40.             <url>/home</url>
  41.             <target>HomeController@index</target>
  42.         </route>
  43.        
  44.         <!-- PROFIL -->
  45.         <route>
  46.             <method>GET</method>
  47.             <url>/account/my-profile</url>
  48.             <target>ProfileController@myProfile</target>
  49.         </route>
  50.         <route>
  51.             <method>GET</method>
  52.             <url>/account/my-vehicles</url>
  53.             <target>ProfileController@myVehicles</target>
  54.         </route>
  55.         <route>
  56.             <method>GET</method>
  57.             <url>/account/my-propertys</url>
  58.             <target>ProfileController@myPropertys</target>
  59.         </route>
  60.         <route>
  61.             <method>GET</method>
  62.             <url>/account/my-faction/members</url>
  63.             <target>FactionController@userFactionMembers</target>
  64.         </route>
  65.         <route>
  66.             <method>POST</method>
  67.             <url>/account/my-faction/members/remove</url>
  68.             <target>FactionController@factionRemoveUser</target>
  69.         </route>
  70.         <route>
  71.             <method>GET</method>
  72.             <url>/account/my-faction/settings</url>
  73.             <target>FactionController@factionSettings</target>
  74.         </route>
  75.         <route>
  76.             <method>POST</method>
  77.             <url>/account/my-faction/settings</url>
  78.             <target>FactionController@ajaxFactionSettings</target>
  79.         </route>
  80.         <route>
  81.             <method>GET</method>
  82.             <url>/account/messages</url>
  83.             <target>ProfileController@myMessages</target>
  84.         </route>
  85.         <route>
  86.             <method>GET</method>
  87.             <url>/account/messages/create</url>
  88.             <target>ProfileController@createMessage</target>
  89.         </route>
  90.         <route>
  91.             <method>POST</method>
  92.             <url>/account/messages/create</url>
  93.             <target>ProfileController@postCreateMessage</target>
  94.         </route>
  95.         <route>
  96.             <method>GET</method>
  97.             <url>/account/messages/[i:id]</url>
  98.             <target>ProfileController@showMessage</target>
  99.         </route>
  100.         <route>
  101.             <method>POST</method>
  102.             <url>/account/messages/[i:id]/newpost</url>
  103.             <target>ProfileController@newMessage</target>
  104.         </route>
  105.         <route>
  106.             <method>GET</method>
  107.             <url>/account/messages/[i:id]/delete</url>
  108.             <target>ProfileController@deleteMessage</target>
  109.         </route>
  110.         <route>
  111.             <method>GET</method>
  112.             <url>/user/[i:id]/signature</url>
  113.             <target>UserAPIController@getSignature</target>
  114.         </route>
  115.         <route>
  116.             <method>GET</method>
  117.             <url>/user/[i:id]/avatar</url>
  118.             <target>UserAPIController@getAvatar</target>
  119.         </route>
  120.         <route>
  121.             <method>GET</method>
  122.             <url>/user/[i:id]/skin</url>
  123.             <target>UserAPIController@getSkin</target>
  124.         </route>
  125.        
  126.         <!-- ACCOUNT -->
  127.         <route>
  128.             <method>GET</method>
  129.             <url>/account/settings</url>
  130.             <target>AccountController@settings</target>
  131.         </route>
  132.         <route>
  133.             <method>GET</method>
  134.             <url>/account/bank</url>
  135.             <target>AccountController@bankIndex</target>
  136.         </route>
  137.         <route>
  138.             <method>POST</method>
  139.             <url>/account/settings</url>
  140.             <target>AccountController@postSettings</target>
  141.         </route>
  142.        
  143.         <!-- BANK -->
  144.         <route>
  145.             <method>GET</method>
  146.             <url>/account/bank/login</url>
  147.             <target>AccountController@bankLogin</target>
  148.         </route>
  149.         <route>
  150.             <method>POST</method>
  151.             <url>/account/bank/login</url>
  152.             <target>AccountController@postBankLogin</target>
  153.         </route>
  154.         <route>
  155.             <method>GET</method>
  156.             <url>/account/bank/logout</url>
  157.             <target>AccountController@bankLogout</target>
  158.         </route>
  159.         <route>
  160.             <method>GET</method>
  161.             <url>/account/bank/[i:id]/transactions</url>
  162.             <target>AccountController@bankTransactions</target>
  163.         </route>
  164.         <route>
  165.             <method>GET</method>
  166.             <url>/account/bank/[i:id]/transfer</url>
  167.             <target>AccountController@bankTransfer</target>
  168.         </route>
  169.         <route>
  170.             <method>POST</method>
  171.             <url>/account/bank/[i:id]/transfer</url>
  172.             <target>AccountController@postBankTransfer</target>
  173.         </route>
  174.         <route>
  175.             <method>GET</method>
  176.             <url>/account/bank/[i:id]</url>
  177.             <target>AccountController@bankOverview</target>
  178.         </route>
  179.        
  180.         <!-- SERVER STATISTIC -->
  181.         <route>
  182.             <method>GET</method>
  183.             <url>/server/factions</url>
  184.             <target>FactionController@showFactions</target>
  185.         </route>
  186.         <route>
  187.             <method>GET</method>
  188.             <url>/server/factions/[i:id]</url>
  189.             <target>FactionController@showFaction</target>
  190.         </route>
  191.         <route>
  192.             <method>GET</method>
  193.             <url>/server/statistic</url>
  194.             <target>ServerController@statistic</target>
  195.         </route>
  196.         <route>
  197.             <method>GET</method>
  198.             <url>/server/map</url>
  199.             <target>MapController@index</target>
  200.         </route>
  201.        
  202.         <!-- Administration -->
  203.         <route>
  204.             <method>GET</method>
  205.             <url>/admin</url>
  206.             <target>AdminController@index</target>
  207.         </route>
  208.         <route>
  209.             <method>GET</method>
  210.             <url>/admin/support</url>
  211.             <target>SupportController@adminSupport</target>
  212.         </route>
  213.         <route>
  214.             <method>GET</method>
  215.             <url>/admin/support/ticket/[i:id]</url>
  216.             <target>SupportController@adminTicket</target>
  217.         </route>
  218.         <route>
  219.             <method>POST</method>
  220.             <url>/admin/support/ticket/message/create</url>
  221.             <target>SupportController@adminTicketMessage</target>
  222.         </route>
  223.         <route>
  224.             <method>POST</method>
  225.             <url>/admin/support/ticket/edit/status</url>
  226.             <target>SupportController@adminEditTicketStatus</target>
  227.         </route>
  228.         <route>
  229.             <method>GET</method>
  230.             <url>/admin/server</url>
  231.             <target>AdminController@index</target>
  232.         </route>
  233.         <route>
  234.             <method>GET</method>
  235.             <url>/admin/server/users</url>
  236.             <target>AdminController@users</target>
  237.         </route>
  238.         <route>
  239.             <method>GET</method>
  240.             <url>/admin/server/user/[i:id]/akte</url>
  241.             <target>AdminController@userAkte</target>
  242.         </route>
  243.         <route>
  244.             <method>POST</method>
  245.             <url>/admin/server/user/[i:id]/akte</url>
  246.             <target>AdminController@userAddAkte</target>
  247.         </route>
  248.         <route>
  249.             <method>GET</method>
  250.             <url>/admin/server/akte/[i:id]/delete</url>
  251.             <target>AdminController@ajaxDeleteAkte</target>
  252.         </route>
  253.         <route>
  254.             <method>GET</method>
  255.             <url>/admin/server/user/[i:id]/edit</url>
  256.             <target>AdminController@editUser</target>
  257.         </route>
  258.         <route>
  259.             <method>POST</method>
  260.             <url>/admin/server/user/[i:id]/edit</url>
  261.             <target>AdminController@postEditUser</target>
  262.         </route>
  263.         <route>
  264.             <method>POST</method>
  265.             <url>/admin/server/users/ban</url>
  266.             <target>AdminController@ajaxUserBan</target>
  267.         </route>
  268.         <route>
  269.             <method>POST</method>
  270.             <url>/admin/server/users/unban</url>
  271.             <target>AdminController@ajaxUserUnban</target>
  272.         </route>
  273.         <route>
  274.             <method>POST</method>
  275.             <url>/admin/server/users/premium</url>
  276.             <target>AdminController@ajaxUserPremium</target>
  277.         </route>
  278.         <route>
  279.             <method>GET</method>
  280.             <url>/admin/server/start</url>
  281.             <target>AdminController@ajaxStartServer</target>
  282.         </route>
  283.         <route>
  284.             <method>GET</method>
  285.             <url>/admin/server/stop</url>
  286.             <target>AdminController@ajaxStopServer</target>
  287.         </route>
  288.         <route>
  289.             <method>GET</method>
  290.             <url>/admin/server/restart</url>
  291.             <target>AdminController@ajaxRestartServer</target>
  292.         </route>
  293.         <route>
  294.             <method>POST</method>
  295.             <url>/admin/server/rcon</url>
  296.             <target>AdminController@ajaxRconCommand</target>
  297.         </route>
  298.         <route>
  299.             <method>POST</method>
  300.             <url>/admin/server/clearlogs</url>
  301.             <target>AdminController@ajaxClearLogs</target>
  302.         </route>
  303.         <route>
  304.             <method>POST</method>
  305.             <url>/admin/server/showlog</url>
  306.             <target>AdminController@ajaxShowLog</target>
  307.         </route>
  308.         <route>
  309.             <method>GET</method>
  310.             <url>/admin/server/faction/[i:id]</url>
  311.             <target>AdminController@serverFaction</target>
  312.         </route>
  313.        
  314.         <!-- Support System -->
  315.         <route>
  316.             <method>GET</method>
  317.             <url>/account/support</url>
  318.             <target>SupportController@index</target>
  319.         </route>
  320.         <route>
  321.             <method>GET</method>
  322.             <url>/account/support/ticket/[i:id]</url>
  323.             <target>SupportController@showTicket</target>
  324.         </route>
  325.         <route>
  326.             <method>GET</method>
  327.             <url>/account/support/ticket/create</url>
  328.             <target>SupportController@createTicket</target>
  329.         </route>
  330.         <route>
  331.             <method>POST</method>
  332.             <url>/account/support/ticket/create</url>
  333.             <target>SupportController@postCreateTicket</target>
  334.         </route>
  335.         <route>
  336.             <method>POST</method>
  337.             <url>/account/support/ticket/delete</url>
  338.             <target>SupportController@deleteTicket</target>
  339.         </route>
  340.         <route>
  341.             <method>POST</method>
  342.             <url>/account/support/ticket/message/create</url>
  343.             <target>SupportController@createMessage</target>
  344.         </route>
  345.     </routes>
  346. </data>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement