mirror of https://github.com/PiyushXCoder/lupt.git
minor fixes
This commit is contained in:
parent
6587d92e5f
commit
650b1bbd4d
6
app.json
6
app.json
|
|
@ -1,11 +1,11 @@
|
|||
{
|
||||
"name": "Lupt",
|
||||
"description": "Chat app to talk in group or to strangers",
|
||||
"repository": "https://gitlab.com/PiyushXCoder/lupt",
|
||||
"repository": "https://github.com/PiyushXCoder/lupt",
|
||||
"success_url": "/",
|
||||
"keywords": ["rust", "actix"],
|
||||
"website": "https://gitlab.com/PiyushXCoder/lupt",
|
||||
"website": "https://github.com/PiyushXCoder/lupt",
|
||||
"env": {
|
||||
"BUILDPACK_URL": "https://gitlab.com/PiyushXCoder/lupt.git"
|
||||
"BUILDPACK_URL": "https://github.com/PiyushXCoder/lupt"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,18 +1,18 @@
|
|||
/*
|
||||
This file is part of Tarangam.
|
||||
This file is part of Lupt.
|
||||
|
||||
Tarangam is free software: you can redistribute it and/or modify
|
||||
Lupt is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
Tarangam is distributed in the hope that it will be useful,
|
||||
Lupt is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with Tarangam. If not, see <https://www.gnu.org/licenses/>
|
||||
along with Lupt. If not, see <https://www.gnu.org/licenses/>
|
||||
*/
|
||||
|
||||
use actix::prelude::*;
|
||||
|
|
|
|||
|
|
@ -1,18 +1,18 @@
|
|||
/*
|
||||
This file is part of Tarangam.
|
||||
This file is part of Lupt.
|
||||
|
||||
Tarangam is free software: you can redistribute it and/or modify
|
||||
Lupt is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
Tarangam is distributed in the hope that it will be useful,
|
||||
Lupt is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with Tarangam. If not, see <https://www.gnu.org/licenses/>
|
||||
along with Lupt. If not, see <https://www.gnu.org/licenses/>
|
||||
*/
|
||||
|
||||
//! Messages to be sent between Actors
|
||||
|
|
|
|||
|
|
@ -1,18 +1,18 @@
|
|||
/*
|
||||
This file is part of Tarangam.
|
||||
This file is part of Lupt.
|
||||
|
||||
Tarangam is free software: you can redistribute it and/or modify
|
||||
Lupt is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
Tarangam is distributed in the hope that it will be useful,
|
||||
Lupt is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with Tarangam. If not, see <https://www.gnu.org/licenses/>
|
||||
along with Lupt. If not, see <https://www.gnu.org/licenses/>
|
||||
*/
|
||||
|
||||
use super::*;
|
||||
|
|
|
|||
|
|
@ -1,18 +1,18 @@
|
|||
/*
|
||||
This file is part of Tarangam.
|
||||
This file is part of Lupt.
|
||||
|
||||
Tarangam is free software: you can redistribute it and/or modify
|
||||
Lupt is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
Tarangam is distributed in the hope that it will be useful,
|
||||
Lupt is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with Tarangam. If not, see <https://www.gnu.org/licenses/>
|
||||
along with Lupt. If not, see <https://www.gnu.org/licenses/>
|
||||
*/
|
||||
|
||||
use super::*;
|
||||
|
|
|
|||
|
|
@ -1,18 +1,18 @@
|
|||
/*
|
||||
This file is part of Tarangam.
|
||||
This file is part of Lupt.
|
||||
|
||||
Tarangam is free software: you can redistribute it and/or modify
|
||||
Lupt is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
Tarangam is distributed in the hope that it will be useful,
|
||||
Lupt is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with Tarangam. If not, see <https://www.gnu.org/licenses/>
|
||||
along with Lupt. If not, see <https://www.gnu.org/licenses/>
|
||||
*/
|
||||
|
||||
use super::*;
|
||||
|
|
|
|||
|
|
@ -1,18 +1,18 @@
|
|||
/*
|
||||
This file is part of Tarangam.
|
||||
This file is part of Lupt.
|
||||
|
||||
Tarangam is free software: you can redistribute it and/or modify
|
||||
Lupt is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
Tarangam is distributed in the hope that it will be useful,
|
||||
Lupt is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with Tarangam. If not, see <https://www.gnu.org/licenses/>
|
||||
along with Lupt. If not, see <https://www.gnu.org/licenses/>
|
||||
*/
|
||||
|
||||
//! Chat Pinnd(पिण्ड) is Actor to manage Websocket Chat related action
|
||||
|
|
|
|||
|
|
@ -1,18 +1,18 @@
|
|||
/*
|
||||
This file is part of Tarangam.
|
||||
This file is part of Lupt.
|
||||
|
||||
Tarangam is free software: you can redistribute it and/or modify
|
||||
Lupt is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
Tarangam is distributed in the hope that it will be useful,
|
||||
Lupt is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with Tarangam. If not, see <https://www.gnu.org/licenses/>
|
||||
along with Lupt. If not, see <https://www.gnu.org/licenses/>
|
||||
*/
|
||||
|
||||
use super::*;
|
||||
|
|
|
|||
|
|
@ -1,18 +1,18 @@
|
|||
/*
|
||||
This file is part of Tarangam.
|
||||
This file is part of Lupt.
|
||||
|
||||
Tarangam is free software: you can redistribute it and/or modify
|
||||
Lupt is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
Tarangam is distributed in the hope that it will be useful,
|
||||
Lupt is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with Tarangam. If not, see <https://www.gnu.org/licenses/>
|
||||
along with Lupt. If not, see <https://www.gnu.org/licenses/>
|
||||
*/
|
||||
|
||||
use clap::{App, Arg};
|
||||
|
|
|
|||
|
|
@ -1,18 +1,18 @@
|
|||
/*
|
||||
This file is part of Tarangam.
|
||||
This file is part of Lupt.
|
||||
|
||||
Tarangam is free software: you can redistribute it and/or modify
|
||||
Lupt is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
Tarangam is distributed in the hope that it will be useful,
|
||||
Lupt is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with Tarangam. If not, see <https://www.gnu.org/licenses/>
|
||||
along with Lupt. If not, see <https://www.gnu.org/licenses/>
|
||||
*/
|
||||
|
||||
use std::fmt;
|
||||
|
|
|
|||
|
|
@ -1,18 +1,18 @@
|
|||
/*
|
||||
This file is part of Tarangam.
|
||||
This file is part of Lupt.
|
||||
|
||||
Tarangam is free software: you can redistribute it and/or modify
|
||||
Lupt is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
Tarangam is distributed in the hope that it will be useful,
|
||||
Lupt is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with Tarangam. If not, see <https://www.gnu.org/licenses/>
|
||||
along with Lupt. If not, see <https://www.gnu.org/licenses/>
|
||||
*/
|
||||
|
||||
mod kaksh_full_error;
|
||||
|
|
|
|||
|
|
@ -1,18 +1,18 @@
|
|||
/*
|
||||
This file is part of Tarangam.
|
||||
This file is part of Lupt.
|
||||
|
||||
Tarangam is free software: you can redistribute it and/or modify
|
||||
Lupt is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
Tarangam is distributed in the hope that it will be useful,
|
||||
Lupt is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with Tarangam. If not, see <https://www.gnu.org/licenses/>
|
||||
along with Lupt. If not, see <https://www.gnu.org/licenses/>
|
||||
*/
|
||||
|
||||
use std::fmt;
|
||||
|
|
|
|||
|
|
@ -1,18 +1,18 @@
|
|||
/*
|
||||
This file is part of Tarangam.
|
||||
This file is part of Lupt.
|
||||
|
||||
Tarangam is free software: you can redistribute it and/or modify
|
||||
Lupt is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
Tarangam is distributed in the hope that it will be useful,
|
||||
Lupt is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with Tarangam. If not, see <https://www.gnu.org/licenses/>
|
||||
along with Lupt. If not, see <https://www.gnu.org/licenses/>
|
||||
*/
|
||||
pub enum Validation {
|
||||
NonEmpty,
|
||||
|
|
|
|||
|
|
@ -1,18 +1,18 @@
|
|||
/*
|
||||
This file is part of Tarangam.
|
||||
This file is part of Lupt.
|
||||
|
||||
Tarangam is free software: you can redistribute it and/or modify
|
||||
Lupt is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
Tarangam is distributed in the hope that it will be useful,
|
||||
Lupt is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with Tarangam. If not, see <https://www.gnu.org/licenses/>
|
||||
along with Lupt. If not, see <https://www.gnu.org/licenses/>
|
||||
*/
|
||||
|
||||
use super::*;
|
||||
|
|
|
|||
|
|
@ -1,18 +1,18 @@
|
|||
/*
|
||||
This file is part of Tarangam.
|
||||
This file is part of Lupt.
|
||||
|
||||
Tarangam is free software: you can redistribute it and/or modify
|
||||
Lupt is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
Tarangam is distributed in the hope that it will be useful,
|
||||
Lupt is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with Tarangam. If not, see <https://www.gnu.org/licenses/>
|
||||
along with Lupt. If not, see <https://www.gnu.org/licenses/>
|
||||
*/
|
||||
|
||||
use super::*;
|
||||
|
|
|
|||
|
|
@ -1,18 +1,18 @@
|
|||
/*
|
||||
This file is part of Tarangam.
|
||||
This file is part of Lupt.
|
||||
|
||||
Tarangam is free software: you can redistribute it and/or modify
|
||||
Lupt is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
Tarangam is distributed in the hope that it will be useful,
|
||||
Lupt is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with Tarangam. If not, see <https://www.gnu.org/licenses/>
|
||||
along with Lupt. If not, see <https://www.gnu.org/licenses/>
|
||||
*/
|
||||
|
||||
//! Ws Sansad manage websocket of each client
|
||||
|
|
|
|||
|
|
@ -1,18 +1,18 @@
|
|||
/*
|
||||
This file is part of Tarangam.
|
||||
This file is part of Lupt.
|
||||
|
||||
Tarangam is free software: you can redistribute it and/or modify
|
||||
Lupt is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
Tarangam is distributed in the hope that it will be useful,
|
||||
Lupt is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with Tarangam. If not, see <https://www.gnu.org/licenses/>
|
||||
along with Lupt. If not, see <https://www.gnu.org/licenses/>
|
||||
*/
|
||||
|
||||
use super::*;
|
||||
|
|
|
|||
|
|
@ -60,7 +60,7 @@ This privacy policy was last modified on (शुक्ल पक्ष, नव
|
|||
</pre>
|
||||
</div>
|
||||
<div class="text-center" style="padding: 60px;">
|
||||
Made with ❤️️ by <a href="https://gitlab.com/PiyushXCoder">Piyush Mishra</a>
|
||||
Made with ❤️️ by <a href="https://github.com/PiyushXCoder/lupt">Piyush Mishra</a>
|
||||
</div>
|
||||
</div>
|
||||
<script src="js/jquery-3.5.1.min.js"></script>
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@ post any Content that promotes racism, bigotry, hatred or physical harm of any k
|
|||
</pre>
|
||||
</div>
|
||||
<div class="text-center" style="padding: 60px;">
|
||||
Made with ❤️️ by <a href="https://gitlab.com/PiyushXCoder">Piyush Mishra</a>
|
||||
Made with ❤️️ by <a href="https://github.com/PiyushXCoder/lupt">Piyush Mishra</a>
|
||||
</div>
|
||||
</div>
|
||||
<script src="js/jquery-3.5.1.min.js"></script>
|
||||
|
|
|
|||
Loading…
Reference in New Issue