appsmith icon indicating copy to clipboard operation
appsmith copied to clipboard

[Task]: Refactor module instances across modules when source module's name is changed

Open subrata71 opened this issue 1 year ago • 2 comments

SubTasks

When the origin module name is changed, it should also refactor all the module instances of this type in other modules.

Example

Before changing the name of QueryModule1

QueryModule1

JSModule1
   func1
      return QueryModule1.run();

JSModule2
   func1
      return QueryModule1.run();


After changing the module name from QueryModule1 to QueryModuleNewName

QueryModuleNewName

JSModule1
   func1
      return QueryModuleNewName.run();

JSModule2
   func1
      return QueryModuleNewName.run();


subrata71 avatar May 15 '24 05:05 subrata71

Can you help me with more information about it?

Shazad-khan avatar May 29 '24 10:05 Shazad-khan

Hello @Shazad-khan, this Github issue is a representation of an internal task and meant for internal contributors only. If you are looking for contribution to Appsmith then please check this out Code Contributions Guidelines. If you need any other help, please do let me know

ashit-rath avatar Jun 04 '24 06:06 ashit-rath